| Total Complexity | 2 |
| Total Lines | 11 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 15 | class PrivateKeyJwtAuthenticationMethod implements ClientAuthenticationMethodInterface |
||
| 16 | { |
||
| 17 | |||
| 18 | public function support(ServerRequestInterface $request, array $requestData): bool |
||
| 19 | { |
||
| 20 | return false; |
||
| 21 | } |
||
| 22 | |||
| 23 | public function authenticate(ServerRequestInterface $request, array $requestData): ?ClientInterface |
||
| 26 | } |
||
| 27 | } |