vendor/symfony/validator/Constraints/NotBlank.php line 22

Open in your IDE?
  1. <?php
  2. /*
  3.  * This file is part of the Symfony package.
  4.  *
  5.  * (c) Fabien Potencier <fabien@symfony.com>
  6.  *
  7.  * For the full copyright and license information, please view the LICENSE
  8.  * file that was distributed with this source code.
  9.  */
  10. namespace Symfony\Component\Validator\Constraints;
  11. use Symfony\Component\Validator\Constraint;
  12. /**
  13.  * @Annotation
  14.  * @Target({"PROPERTY", "METHOD", "ANNOTATION"})
  15.  *
  16.  * @author Bernhard Schussek <bschussek@gmail.com>
  17.  */
  18. class NotBlank extends Constraint
  19. {
  20.     const IS_BLANK_ERROR 'c1051bb4-d103-4f74-8988-acbcafc7fdc3';
  21.     protected static $errorNames = [
  22.         self::IS_BLANK_ERROR => 'IS_BLANK_ERROR',
  23.     ];
  24.     public $message 'This value should not be blank.';
  25. }