You are here

protected static property Email::$errorNames in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/symfony/validator/Constraints/Email.php \Symfony\Component\Validator\Constraints\Email::errorNames

Maps error codes to the names of their constants.

Type: array

Overrides Constraint::$errorNames

File

vendor/symfony/validator/Constraints/Email.php, line 28

Class

Email
@Target({"PROPERTY", "METHOD", "ANNOTATION"})

Namespace

Symfony\Component\Validator\Constraints

Code

protected static $errorNames = array(
  self::INVALID_FORMAT_ERROR => 'STRICT_CHECK_FAILED_ERROR',
  self::MX_CHECK_FAILED_ERROR => 'MX_CHECK_FAILED_ERROR',
  self::HOST_CHECK_FAILED_ERROR => 'HOST_CHECK_FAILED_ERROR',
);