Conditions | 2 |
Paths | 2 |
Total Lines | 11 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php declare(strict_types = 1); |
||
34 | private function splitColumnsIntoDependencies(array $output): array |
||
35 | { |
||
36 | $parser = new DependencyParser; |
||
37 | |||
38 | $mappedToObjects = []; |
||
39 | foreach ($output as $dependency) { |
||
40 | $mappedToObjects[] = $parser->parse($dependency); |
||
41 | } |
||
42 | |||
43 | return $mappedToObjects; |
||
44 | } |
||
45 | |||
53 |