You are here

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

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

Maps error codes to the names of their constants.

Type: array

Overrides Constraint::$errorNames

File

vendor/symfony/validator/Constraints/Luhn.php, line 31

Class

Luhn
Metadata for the LuhnValidator.

Namespace

Symfony\Component\Validator\Constraints

Code

protected static $errorNames = array(
  self::INVALID_CHARACTERS_ERROR => 'INVALID_CHARACTERS_ERROR',
  self::CHECKSUM_FAILED_ERROR => 'CHECKSUM_FAILED_ERROR',
);