comparison vendor/symfony/validator/Constraints/Blank.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
21 */ 21 */
22 class Blank extends Constraint 22 class Blank extends Constraint
23 { 23 {
24 const NOT_BLANK_ERROR = '183ad2de-533d-4796-a439-6d3c3852b549'; 24 const NOT_BLANK_ERROR = '183ad2de-533d-4796-a439-6d3c3852b549';
25 25
26 protected static $errorNames = array( 26 protected static $errorNames = [
27 self::NOT_BLANK_ERROR => 'NOT_BLANK_ERROR', 27 self::NOT_BLANK_ERROR => 'NOT_BLANK_ERROR',
28 ); 28 ];
29 29
30 public $message = 'This value should be blank.'; 30 public $message = 'This value should be blank.';
31 } 31 }