Total Complexity | 2 |
Total Lines | 10 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
15 | class ClientSecretJwtAuthenticationMethod implements ClientAuthenticationMethodInterface |
||
16 | { |
||
17 | |||
18 | function support(ServerRequestInterface $request, array $requestData): bool |
||
20 | // TODO: Implement support() method. |
||
21 | } |
||
22 | |||
23 | function authenticate(ServerRequestInterface $request, array $requestData): ?ClientInterface |
||
27 | } |
Adding explicit visibility (
private
,protected
, orpublic
) is generally recommend to communicate to other developers how, and from where this method is intended to be used.