vendor/karser/karser-recaptcha3-bundle/Validator/Constraints/Recaptcha3.php line 10

Open in your IDE?
  1. <?php declare(strict_types=1);
  2. namespace Karser\Recaptcha3Bundle\Validator\Constraints;
  3. use Symfony\Component\Validator\Constraint;
  4. /**
  5.  * @Annotation
  6.  */
  7. final class Recaptcha3 extends Constraint
  8. {
  9.     const INVALID_FORMAT_ERROR '7147ffdb-0af4-4f7a-bd5e-e9dcfa6d7a2d';
  10.     public $message 'Your computer or network may be sending automated queries';
  11.     public $messageMissingValue 'The captcha value is missing';
  12. }