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

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. #[\Attribute(\Attribute::TARGET_PROPERTY \Attribute::TARGET_METHOD \Attribute::IS_REPEATABLE)]
  19. class IsTrue extends Constraint
  20. {
  21.     public const NOT_TRUE_ERROR '2beabf1c-54c0-4882-a928-05249b26e23b';
  22.     protected const ERROR_NAMES = [
  23.         self::NOT_TRUE_ERROR => 'NOT_TRUE_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 true.';
  30.     public function __construct(array $options nullstring $message null, array $groups nullmixed $payload null)
  31.     {
  32.         parent::__construct($options ?? [], $groups$payload);
  33.         $this->message $message ?? $this->message;
  34.     }
  35. }