Total Complexity | 4 |
Total Lines | 44 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
12 | class AuthorizationRequest implements BuilderInterface |
||
13 | { |
||
14 | /** |
||
15 | * @var ConfigInterface |
||
16 | */ |
||
17 | private $config; |
||
18 | |||
19 | /** |
||
20 | * @param ConfigInterface $config |
||
21 | */ |
||
22 | public function __construct( |
||
26 | } |
||
27 | |||
28 | /** |
||
29 | * Builds ENV request |
||
30 | * |
||
31 | * @param array $buildSubject |
||
32 | * @return array |
||
33 | */ |
||
34 | public function build(array $buildSubject) |
||
60 |