Total Complexity | 4 |
Total Lines | 38 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
10 | class Exploder |
||
11 | { |
||
12 | /** |
||
13 | * @var \Vaimo\ComposerPatches\Patch\Definition\Value\Analyser |
||
14 | */ |
||
15 | private $valueAnalyser; |
||
16 | |||
17 | /** |
||
18 | * @var PatchDefinition\Exploder\ItemBuilder |
||
19 | */ |
||
20 | private $itemBuilder; |
||
21 | |||
22 | public function __construct() |
||
23 | { |
||
24 | $this->valueAnalyser = new \Vaimo\ComposerPatches\Patch\Definition\Value\Analyser(); |
||
25 | $this->itemBuilder = new \Vaimo\ComposerPatches\Patch\Definition\Exploder\ItemBuilder(); |
||
26 | } |
||
27 | |||
28 | public function process($label, array $items, array $defaults = array()) |
||
48 | } |
||
49 | } |
||
50 |