Total Complexity | 7 |
Total Lines | 30 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
10 | class SequenceItemComponent implements \Vaimo\ComposerPatches\Interfaces\DefinitionExploderComponentInterface |
||
11 | { |
||
12 | /** |
||
13 | * @var \Vaimo\ComposerPatches\Patch\Definition\Exploder\ItemBuilder |
||
14 | */ |
||
15 | private $itemBuilder; |
||
16 | |||
17 | public function __construct() |
||
18 | { |
||
19 | $this->itemBuilder = new \Vaimo\ComposerPatches\Patch\Definition\Exploder\ItemBuilder(); |
||
20 | } |
||
21 | |||
22 | public function shouldProcess($label, $data) |
||
32 | } |
||
33 | |||
34 | public function explode($label, $data) |
||
40 | ); |
||
41 | } |
||
43 |