comparison vendor/symfony/validator/Constraints/Range.php @ 4:a9cd425dd02b

Update, including to Drupal core 8.6.10
author Chris Cannam
date Thu, 28 Feb 2019 13:11:55 +0000
parents c75dbcec494b
children
comparison
equal deleted inserted replaced
3:307d7a7fd348 4:a9cd425dd02b
24 { 24 {
25 const INVALID_CHARACTERS_ERROR = 'ad9a9798-7a99-4df7-8ce9-46e416a1e60b'; 25 const INVALID_CHARACTERS_ERROR = 'ad9a9798-7a99-4df7-8ce9-46e416a1e60b';
26 const TOO_HIGH_ERROR = '2d28afcb-e32e-45fb-a815-01c431a86a69'; 26 const TOO_HIGH_ERROR = '2d28afcb-e32e-45fb-a815-01c431a86a69';
27 const TOO_LOW_ERROR = '76454e69-502c-46c5-9643-f447d837c4d5'; 27 const TOO_LOW_ERROR = '76454e69-502c-46c5-9643-f447d837c4d5';
28 28
29 protected static $errorNames = array( 29 protected static $errorNames = [
30 self::INVALID_CHARACTERS_ERROR => 'INVALID_CHARACTERS_ERROR', 30 self::INVALID_CHARACTERS_ERROR => 'INVALID_CHARACTERS_ERROR',
31 self::TOO_HIGH_ERROR => 'TOO_HIGH_ERROR', 31 self::TOO_HIGH_ERROR => 'TOO_HIGH_ERROR',
32 self::TOO_LOW_ERROR => 'TOO_LOW_ERROR', 32 self::TOO_LOW_ERROR => 'TOO_LOW_ERROR',
33 ); 33 ];
34 34
35 public $minMessage = 'This value should be {{ limit }} or more.'; 35 public $minMessage = 'This value should be {{ limit }} or more.';
36 public $maxMessage = 'This value should be {{ limit }} or less.'; 36 public $maxMessage = 'This value should be {{ limit }} or less.';
37 public $invalidMessage = 'This value should be a valid number.'; 37 public $invalidMessage = 'This value should be a valid number.';
38 public $min; 38 public $min;
41 public function __construct($options = null) 41 public function __construct($options = null)
42 { 42 {
43 parent::__construct($options); 43 parent::__construct($options);
44 44
45 if (null === $this->min && null === $this->max) { 45 if (null === $this->min && null === $this->max) {
46 throw new MissingOptionsException(sprintf('Either option "min" or "max" must be given for constraint %s', __CLASS__), array('min', 'max')); 46 throw new MissingOptionsException(sprintf('Either option "min" or "max" must be given for constraint %s', __CLASS__), ['min', 'max']);
47 } 47 }
48 } 48 }
49 } 49 }