vendor/oz/toolboxe/src/Validator/RecaptchaValidation.php line 10

Open in your IDE?
  1. <?php
  2. namespace Oz\Toolboxe\Validator;
  3. use Symfony\Component\Validator\Constraint;
  4. /**
  5.  * @Annotation
  6.  */
  7. class RecaptchaValidation extends Constraint
  8. {
  9.     /*
  10.      * Any public properties become valid options for the annotation.
  11.      * Then, use these in your validator class.
  12.      */
  13.     public $message 'Recaptcha invalide';
  14. }