Passed
Push — master ( af59f2...c344e1 )
by Alexandre
02:20
created

CodeParameterHandler   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 4
Duplicated Lines 0 %

Importance

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

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 OAuth2OLD\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
}