vendor/symfony/validator/Constraints/Length.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. use Symfony\Component\Validator\Exception\MissingOptionsException;
  14. /**
  15.  * @Annotation
  16.  * @Target({"PROPERTY", "METHOD", "ANNOTATION"})
  17.  *
  18.  * @author Bernhard Schussek <bschussek@gmail.com>
  19.  */
  20. class Length extends Constraint
  21. {
  22.     public const TOO_SHORT_ERROR '9ff3fdc4-b214-49db-8718-39c315e33d45';
  23.     public const TOO_LONG_ERROR 'd94b19cc-114f-4f44-9cc4-4138e80a87b9';
  24.     public const INVALID_CHARACTERS_ERROR '35e6a710-aa2e-4719-b58e-24b35749b767';
  25.     protected static $errorNames = [
  26.         self::TOO_SHORT_ERROR => 'TOO_SHORT_ERROR',
  27.         self::TOO_LONG_ERROR => 'TOO_LONG_ERROR',
  28.         self::INVALID_CHARACTERS_ERROR => 'INVALID_CHARACTERS_ERROR',
  29.     ];
  30.     public $maxMessage 'This value is too long. It should have {{ limit }} character or less.|This value is too long. It should have {{ limit }} characters or less.';
  31.     public $minMessage 'This value is too short. It should have {{ limit }} character or more.|This value is too short. It should have {{ limit }} characters or more.';
  32.     public $exactMessage 'This value should have exactly {{ limit }} character.|This value should have exactly {{ limit }} characters.';
  33.     public $charsetMessage 'This value does not match the expected {{ charset }} charset.';
  34.     public $max;
  35.     public $min;
  36.     public $charset 'UTF-8';
  37.     public $normalizer;
  38.     public $allowEmptyString;
  39.     public function __construct($options null)
  40.     {
  41.         if (null !== $options && !\is_array($options)) {
  42.             $options = [
  43.                 'min' => $options,
  44.                 'max' => $options,
  45.             ];
  46.         } elseif (\is_array($options) && isset($options['value']) && !isset($options['min']) && !isset($options['max'])) {
  47.             $options['min'] = $options['max'] = $options['value'];
  48.             unset($options['value']);
  49.         }
  50.         parent::__construct($options);
  51.         if (null === $this->min && null === $this->max) {
  52.             throw new MissingOptionsException(sprintf('Either option "min" or "max" must be given for constraint "%s".'__CLASS__), ['min''max']);
  53.         }
  54.         if (null !== $this->normalizer && !\is_callable($this->normalizer)) {
  55.             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)));
  56.         }
  57.     }
  58. }