src/Validator/Constraints/IsEqualToCurrentCode.php line 12

Open in your IDE?
  1. <?php
  2. declare(strict_types=1);
  3. namespace App\Validator\Constraints;
  4. use Symfony\Component\Validator\Constraint;
  5. /**
  6.  * @Annotation
  7.  */
  8. class IsEqualToCurrentCode extends Constraint
  9. {
  10.     public $message 'The value "{{ value }}" is not equal to the current code.';
  11. }