vendor/excelwebzone/recaptcha-bundle/src/Validator/Constraints/IsTrue.php line 11

Open in your IDE?
  1. <?php
  2. namespace EWZ\Bundle\RecaptchaBundle\Validator\Constraints;
  3. use Symfony\Component\Validator\Constraint;
  4. /**
  5.  * @Annotation
  6.  * @Target("PROPERTY")
  7.  */
  8. class IsTrue extends Constraint
  9. {
  10.     public $message 'This value is not a valid captcha.';
  11.     public $invalidHostMessage 'The captcha was not resolved on the right domain.';
  12.     /**
  13.      * {@inheritdoc}
  14.      */
  15.     public function getTargets()
  16.     {
  17.         return Constraint::PROPERTY_CONSTRAINT;
  18.     }
  19.     /**
  20.      * {@inheritdoc}
  21.      */
  22.     public function validatedBy()
  23.     {
  24.         return 'ewz_recaptcha.true';
  25.     }
  26. }