vendor/symfony/validator/Constraints/Type.php line 23

  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. #[\Attribute(\Attribute::TARGET_PROPERTY \Attribute::TARGET_METHOD \Attribute::IS_REPEATABLE)]
  19. class Type extends Constraint
  20. {
  21.     public const INVALID_TYPE_ERROR 'ba785a8c-82cb-4283-967c-3cf342181b40';
  22.     protected const ERROR_NAMES = [
  23.         self::INVALID_TYPE_ERROR => 'INVALID_TYPE_ERROR',
  24.     ];
  25.     /**
  26.      * @deprecated since Symfony 6.1, use const ERROR_NAMES instead
  27.      */
  28.     protected static $errorNames self::ERROR_NAMES;
  29.     public $message 'This value should be of type {{ type }}.';
  30.     public $type;
  31.     public function __construct(string|array|null $typestring $message null, array $groups nullmixed $payload null, array $options = [])
  32.     {
  33.         if (\is_array($type) && \is_string(key($type))) {
  34.             $options array_merge($type$options);
  35.         } elseif (null !== $type) {
  36.             $options['value'] = $type;
  37.         }
  38.         parent::__construct($options$groups$payload);
  39.         $this->message $message ?? $this->message;
  40.     }
  41.     public function getDefaultOption(): ?string
  42.     {
  43.         return 'type';
  44.     }
  45.     public function getRequiredOptions(): array
  46.     {
  47.         return ['type'];
  48.     }
  49. }