Total Complexity | 2 |
Total Lines | 19 |
Duplicated Lines | 0 % |
Changes | 4 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
11 | class CaptchaService |
||
12 | { |
||
13 | /** |
||
14 | * Return either null (if captcha is not enabled), or the captcha object (which should implement |
||
15 | * CaptchaInterface interface / extend the CaptchaAbstract class). |
||
16 | * |
||
17 | * @return CaptchaAbstract|null |
||
18 | */ |
||
19 | public function getCaptchaObject(): ?CaptchaInterface |
||
32 |