Completed
Push — master ( fec6f1...fc6f01 )
by Alexandre
03:31
created

PKCEExtension::load()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
nc 1
nop 1
dl 0
loc 2
rs 10
c 0
b 0
f 0
1
<?php
2
/**
3
 * Created by PhpStorm.
4
 * User: Alexandre
5
 * Date: 16/06/2018
6
 * Time: 15:28
7
 */
8
9
namespace OAuth2\Extensions\PKCE;
10
11
12
use OAuth2\Extensions\ExtensionInterface;
13
use OAuth2\OAuthServer;
14
use OAuth2\OAuthServerBuilder;
15
16
class PKCEExtension implements ExtensionInterface
17
{
18
    public function load(OAuthServerBuilder $builder)
19
    {
20
21
    }
22
}