vendor/victor-prdh/recaptcha-bundle/src/Validator/Constraints/IsValidCaptcha.php line 12

Open in your IDE?
  1. <?php
  2. namespace VictorPrdh\RecaptchaBundle\Validator\Constraints;
  3. use Symfony\Component\Validator\Constraint;
  4. /**
  5.  * @Annotation
  6.  * @Target({"PROPERTY", "METHOD", "ANNOTATION"})
  7.  */
  8. #[\Attribute(\Attribute::TARGET_PROPERTY \Attribute::TARGET_METHOD \Attribute::IS_REPEATABLE)]
  9. class IsValidCaptcha extends Constraint
  10. {
  11.     public $message 'This value is not a valid captcha.';
  12. }