<?php
declare(strict_types=1);
namespace App\Validator\Constraints;
use Symfony\Component\Validator\Constraint;
/**
* @Annotation
*/
class IsEqualToCurrentCode extends Constraint
{
public $message = 'The value "{{ value }}" is not equal to the current code.';
}