| Total Complexity | 5 |
| Total Lines | 25 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 9 | class Disabled extends ACaptcha |
||
| 10 | { |
||
| 11 | 1 | public function addRule(/** @scrutinizer ignore-unused */ string $ruleName, /** @scrutinizer ignore-unused */ string $errorText, /** @scrutinizer ignore-unused */ ...$args): void |
|
| 12 | { |
||
| 13 | // no additional rules applicable |
||
| 14 | 1 | } |
|
| 15 | |||
| 16 | 1 | public function getRules(): array |
|
| 19 | } |
||
| 20 | |||
| 21 | 1 | public function renderInput($attributes = null): string |
|
| 22 | { |
||
| 23 | 1 | return ''; |
|
| 24 | } |
||
| 25 | |||
| 26 | 1 | public function renderLabel($attributes = array()): string |
|
| 27 | { |
||
| 28 | 1 | return ''; |
|
| 29 | } |
||
| 30 | |||
| 31 | 1 | public function renderErrors(array $errors): string |
|
| 34 | } |
||
| 35 | } |
||
| 36 |