comparison vendor/symfony/validator/Constraints/GreaterThanOrEqual.php @ 17:129ea1e6d783

Update, including to Drupal core 8.6.10
author Chris Cannam
date Thu, 28 Feb 2019 13:21:36 +0000
parents 4c8ae668cc8c
children
comparison
equal deleted inserted replaced
16:c2387f117808 17:129ea1e6d783
20 */ 20 */
21 class GreaterThanOrEqual extends AbstractComparison 21 class GreaterThanOrEqual extends AbstractComparison
22 { 22 {
23 const TOO_LOW_ERROR = 'ea4e51d1-3342-48bd-87f1-9e672cd90cad'; 23 const TOO_LOW_ERROR = 'ea4e51d1-3342-48bd-87f1-9e672cd90cad';
24 24
25 protected static $errorNames = array( 25 protected static $errorNames = [
26 self::TOO_LOW_ERROR => 'TOO_LOW_ERROR', 26 self::TOO_LOW_ERROR => 'TOO_LOW_ERROR',
27 ); 27 ];
28 28
29 public $message = 'This value should be greater than or equal to {{ compared_value }}.'; 29 public $message = 'This value should be greater than or equal to {{ compared_value }}.';
30 } 30 }