Email.php 452 B

123456789101112131415161718
  1. <?php
  2. namespace Symfony\Component\Validator\Constraints;
  3. /*
  4. * This file is part of the Symfony framework.
  5. *
  6. * (c) Fabien Potencier <fabien.potencier@symfony-project.com>
  7. *
  8. * This source file is subject to the MIT license that is bundled
  9. * with this source code in the file LICENSE.
  10. */
  11. class Email extends \Symfony\Component\Validator\Constraint
  12. {
  13. public $message = 'This value is not a valid email address';
  14. public $checkMX = false;
  15. }