comparison vendor/symfony/validator/Constraints/IsFalse.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
21 */ 21 */
22 class IsFalse extends Constraint 22 class IsFalse extends Constraint
23 { 23 {
24 const NOT_FALSE_ERROR = 'd53a91b0-def3-426a-83d7-269da7ab4200'; 24 const NOT_FALSE_ERROR = 'd53a91b0-def3-426a-83d7-269da7ab4200';
25 25
26 protected static $errorNames = array( 26 protected static $errorNames = [
27 self::NOT_FALSE_ERROR => 'NOT_FALSE_ERROR', 27 self::NOT_FALSE_ERROR => 'NOT_FALSE_ERROR',
28 ); 28 ];
29 29
30 public $message = 'This value should be false.'; 30 public $message = 'This value should be false.';
31 } 31 }