Total Complexity | 2 |
Total Lines | 22 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
13 | abstract class AuthenticationProcess |
||
14 | { |
||
15 | |||
16 | /** |
||
17 | * Authenticate process |
||
18 | */ |
||
19 | public function authenticate(IInput $input): bool |
||
24 | } |
||
25 | |||
26 | /** |
||
27 | * Authenticate request data |
||
28 | */ |
||
29 | abstract protected function authRequestData(IInput $input): bool; |
||
30 | |||
31 | /** |
||
32 | * Authenticate request timeout |
||
33 | */ |
||
34 | abstract protected function authRequestTimeout(IInput $input): bool; |
||
35 | } |
||
36 |