You are here

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

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

Maps error codes to the names of their constants.

Type: array

Overrides Constraint::$errorNames

File

vendor/symfony/validator/Constraints/Iban.php, line 36

Class

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

Namespace

Symfony\Component\Validator\Constraints

Code

protected static $errorNames = array(
  self::TOO_SHORT_ERROR => 'TOO_SHORT_ERROR',
  self::INVALID_COUNTRY_CODE_ERROR => 'INVALID_COUNTRY_CODE_ERROR',
  self::INVALID_CHARACTERS_ERROR => 'INVALID_CHARACTERS_ERROR',
  self::INVALID_CASE_ERROR => 'INVALID_CASE_ERROR',
  self::CHECKSUM_FAILED_ERROR => 'CHECKSUM_FAILED_ERROR',
  self::INVALID_FORMAT_ERROR => 'INVALID_FORMAT_ERROR',
  self::NOT_SUPPORTED_COUNTRY_CODE_ERROR => 'NOT_SUPPORTED_COUNTRY_CODE_ERROR',
);