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

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. use Symfony\Component\Validator\Exception\InvalidArgumentException;
  13. /**
  14.  * @Annotation
  15.  * @Target({"PROPERTY", "METHOD", "ANNOTATION"})
  16.  *
  17.  * @author Bernhard Schussek <bschussek@gmail.com>
  18.  * @author Kévin Dunglas <dunglas@gmail.com>
  19.  */
  20. class NotBlank extends Constraint
  21. {
  22.     public const IS_BLANK_ERROR 'c1051bb4-d103-4f74-8988-acbcafc7fdc3';
  23.     protected static $errorNames = [
  24.         self::IS_BLANK_ERROR => 'IS_BLANK_ERROR',
  25.     ];
  26.     public $message 'This value should not be blank.';
  27.     public $allowNull false;
  28.     public $normalizer;
  29.     public function __construct($options null)
  30.     {
  31.         parent::__construct($options);
  32.         if (null !== $this->normalizer && !\is_callable($this->normalizer)) {
  33.             throw new InvalidArgumentException(sprintf('The "normalizer" option must be a valid callable ("%s" given).', \is_object($this->normalizer) ? \get_class($this->normalizer) : \gettype($this->normalizer)));
  34.         }
  35.     }
  36. }