src/Entity/CaptchaCus.php line 7

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use Captcha\Bundle\CaptchaBundle\Validator\Constraints as CaptchaAssert;
  4. class CaptchaCus
  5. {
  6.     /**
  7.      * @CaptchaAssert\ValidCaptcha(
  8.      *      message = "CAPTCHA validation failed, try again."
  9.      * )
  10.      */
  11.     protected $captchaCode;
  12.     public function getCaptchaCode()
  13.     {
  14.         return $this->captchaCode;
  15.     }
  16.     public function setCaptchaCode($captchaCode)
  17.     {
  18.         $this->captchaCode $captchaCode;
  19.     }
  20. }