vendor/victor-prdh/recaptcha-bundle/src/Validator/Constraints/IsValidCaptcha.php line 12
<?phpnamespace VictorPrdh\RecaptchaBundle\Validator\Constraints;use Symfony\Component\Validator\Constraint;/*** @Annotation* @Target({"PROPERTY", "METHOD", "ANNOTATION"})*/#[\Attribute(\Attribute::TARGET_PROPERTY | \Attribute::TARGET_METHOD | \Attribute::IS_REPEATABLE)]class IsValidCaptcha extends Constraint{public $message = 'This value is not a valid captcha.';}