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