Total Complexity | 1 |
Total Lines | 22 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
28 | abstract class CaptchaProvider implements CaptchaInterface |
||
29 | { |
||
30 | /** |
||
31 | * Constroctor. |
||
32 | */ |
||
33 | 210 | public function __construct() |
|
35 | } |
||
36 | 210 | ||
37 | /** |
||
38 | * Is denied? |
||
39 | * |
||
40 | * @return bool |
||
41 | */ |
||
42 | abstract public function response(): bool; |
||
43 | |||
44 | /** |
||
45 | * Unique deny status code. |
||
46 | * |
||
47 | * @return string |
||
48 | */ |
||
49 | abstract public function form(): string; |
||
50 | } |
||
51 |