Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php declare(strict_types = 1); |
||
13 | public function loadDependencies(string $composer, string $project): array |
||
14 | { |
||
15 | $commandOutput = $this->runComposerLicenseCommand($composer, $project); |
||
16 | |||
17 | $cleanOutput = $this->stripHeadersFromOutput($commandOutput); |
||
18 | |||
19 | return $this->splitColumnsIntoDependencies($cleanOutput); |
||
20 | } |
||
21 | |||
53 |