Total Complexity | 7 |
Total Lines | 37 |
Duplicated Lines | 0 % |
Coverage | 93.33% |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
15 | final class Composite implements AuthenticationMethodInterface |
||
16 | { |
||
17 | /** |
||
18 | * @var AuthenticationMethodInterface[] |
||
19 | */ |
||
20 | private array $authenticationMethods; |
||
21 | |||
22 | /** |
||
23 | * @param AuthenticationMethodInterface[] $methods |
||
24 | */ |
||
25 | 4 | public function __construct(array $methods) |
|
28 | 4 | } |
|
29 | |||
30 | 3 | public function authenticate(ServerRequestInterface $request): ?IdentityInterface |
|
44 | } |
||
45 | |||
46 | 1 | public function challenge(ResponseInterface $response): ResponseInterface |
|
54 |