app/Plugin/VeriTrans4G2/Form/Constraint/ContainsRecaptcha.php line 15

Open in your IDE?
  1. <?php
  2. /*
  3.  * Copyright (c) 2018 VeriTrans Inc., a Digital Garage company. All rights reserved.
  4.  * http://www.veritrans.co.jp/
  5.  */
  6. namespace Plugin\VeriTrans4G2\Form\Constraint;
  7. use Symfony\Component\Validator\Constraint;
  8. /**
  9.  * reCAPTCHA設定項目制約クラス
  10.  *
  11.  * @Annotation
  12.  */
  13. class ContainsRecaptcha extends Constraint
  14. {
  15.     public function validatedBy()
  16.     {
  17.         return \get_class($this).'Validator';
  18.     }
  19. }