CodeParameterHandler::handle()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
nc 1
nop 2
dl 0
loc 2
rs 10
c 0
b 0
f 0
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
}