Passed
Push — master ( c97e91...9a636e )
by Alexandre
01:52
created

CodeParameterHandler   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 4
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
dl 0
loc 4
rs 10
c 0
b 0
f 0
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A handle() 0 2 1
1
<?php
2
/**
3
 * Created by PhpStorm.
4
 * User: Alexandre
5
 * Date: 10/03/2018
6
 * Time: 17:52
7
 */
8
9
namespace OAuth2\Parameters;
10
11
12
use OAuth2\Endpoints\TokenEndpoint;
13
14
15
class CodeParameterHandler implements ParameterHandlerInterface
16
{
17
    public function handle(TokenEndpoint $tokenEndpoint, array $requestData)
18
    {
19
        // TODO: Implement handle() method.
20
    }
21
}