| Total Complexity | 4 |
| Total Lines | 15 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 15 | class Checked implements Interfaces\IStatus |
||
| 16 | { |
||
| 17 | 6 | public function allowLogin(?int $status): bool |
|
| 18 | { |
||
| 19 | 6 | return is_int($status) && in_array($status, [ |
|
| 20 | 6 | acc_interfaces\IUser::USER_STATUS_ENABLED, |
|
| 21 | acc_interfaces\IUser::USER_STATUS_ONLY_LOGIN, |
||
| 22 | ]); |
||
| 23 | } |
||
| 24 | |||
| 25 | 6 | public function allowCert(?int $status): bool |
|
| 30 | ]); |
||
| 31 | } |
||
| 33 |