authenticate()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
nc 1
nop 2
dl 0
loc 3
rs 10
c 0
b 0
f 0
1
<?php
2
/**
3
 * Created by PhpStorm.
4
 * User: GCC-MED
5
 * Date: 09/03/2018
6
 * Time: 16:58
7
 */
8
9
namespace OAuth2\ClientAuthentication;
10
11
12
use OAuth2\Roles\ClientInterface;
13
use Psr\Http\Message\ServerRequestInterface;
14
15
class ClientSecretJwtAuthenticationMethod 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
24
    {
25
        return null;
26
    }
27
}