vendor/excelwebzone/recaptcha-bundle/src/Validator/Constraints/IsTrueV3.php line 10

Open in your IDE?
  1. <?php
  2. namespace EWZ\Bundle\RecaptchaBundle\Validator\Constraints;
  3. /**
  4. * @Annotation
  5. * @Target("PROPERTY")
  6. */
  7. #[\Attribute(\Attribute::TARGET_PROPERTY | \Attribute::IS_REPEATABLE)]
  8. class IsTrueV3 extends IsTrue
  9. {
  10. /**
  11. * {@inheritdoc}
  12. */
  13. public function validatedBy(): string
  14. {
  15. return 'ewz_recaptcha.v3.true';
  16. }
  17. }