| Total Complexity | 2 | 
| Total Lines | 10 | 
| Duplicated Lines | 0 % | 
| Changes | 0 | ||
| 1 | <?php  | 
            ||
| 15 | class PrivateKeyJwtAuthenticationMethod implements ClientAuthenticationMethodInterface  | 
            ||
| 16 | { | 
            ||
| 17 | |||
| 18 | function support(ServerRequestInterface $request, array $requestData): bool  | 
            ||
| 
                                                                                                    
                        
                         | 
                |||
| 19 |     { | 
            ||
| 20 | // TODO: Implement support() method.  | 
            ||
| 21 | }  | 
            ||
| 22 | |||
| 23 | function authenticate(ServerRequestInterface $request, array $requestData): ?ClientInterface  | 
            ||
| 25 | // TODO: Implement authenticate() method.  | 
            ||
| 26 | }  | 
            ||
| 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.