vendor/symfony/validator/Constraints/EqualTo.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. /**
  12.  * @Annotation
  13.  * @Target({"PROPERTY", "METHOD", "ANNOTATION"})
  14.  *
  15.  * @author Daniel Holmes <daniel@danielholmes.org>
  16.  * @author Bernhard Schussek <bschussek@gmail.com>
  17.  */
  18. #[\Attribute(\Attribute::TARGET_PROPERTY | \Attribute::TARGET_METHOD | \Attribute::IS_REPEATABLE)]
  19. class EqualTo extends AbstractComparison
  20. {
  21.     public const NOT_EQUAL_ERROR '478618a7-95ba-473d-9101-cabd45e49115';
  22.     protected static $errorNames = [
  23.         self::NOT_EQUAL_ERROR => 'NOT_EQUAL_ERROR',
  24.     ];
  25.     public $message 'This value should be equal to {{ compared_value }}.';
  26. }