You are here

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

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

Maps error codes to the names of their constants.

Type: array

Overrides Constraint::$errorNames

File

vendor/symfony/validator/Constraints/Range.php, line 29

Class

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

Namespace

Symfony\Component\Validator\Constraints

Code

protected static $errorNames = array(
  self::INVALID_VALUE_ERROR => 'INVALID_VALUE_ERROR',
  self::BEYOND_RANGE_ERROR => 'BEYOND_RANGE_ERROR',
  self::BELOW_RANGE_ERROR => 'BELOW_RANGE_ERROR',
);