1 | <?php |
||
11 | class Captcha extends Text |
||
12 | { |
||
13 | /** @var CaptchaAdapterInterface $captchAdapter */ |
||
14 | private $captchaAdapter; |
||
15 | |||
16 | public function init(): void |
||
21 | |||
22 | /** |
||
23 | * @param CaptchaAdapterInterface $captchaAdapter |
||
24 | */ |
||
25 | public function setCaptchaAdapter(CaptchaAdapterInterface $captchaAdapter): void |
||
29 | |||
30 | /** |
||
31 | * @return CaptchaAdapterInterface |
||
32 | */ |
||
33 | public function getCaptchAdapter(): CaptchaAdapterInterface |
||
37 | } |