| Total Complexity | 3 |
| Total Lines | 20 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 12 | final class AuthenticationMethodInterfaceProxy implements AuthenticationMethodInterface |
||
| 13 | { |
||
| 14 | public function __construct(private AuthenticationMethodInterface $decorated, private IdentityCollector $collector) |
||
| 15 | { |
||
| 16 | } |
||
| 17 | |||
| 18 | public function authenticate(ServerRequestInterface $request): ?IdentityInterface |
||
| 27 | } |
||
| 28 | |||
| 29 | public function challenge(ResponseInterface $response): ResponseInterface |
||
| 34 |