| Conditions | 1 |
| Paths | 1 |
| Total Lines | 5 |
| Code Lines | 2 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 3 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php declare(strict_types=1); |
||
| 10 | 8 | public static function import(array $command): Command |
|
| 11 | { |
||
| 12 | 8 | Assert::requireFields(['repository', 'target-dir'], $command, 'ComposerInstallCommand'); |
|
| 13 | |||
| 14 | 6 | return new ComposerInstallCommand($command['repository'], $command['target-dir'], $command['version'] ?? null); |
|
| 15 | } |
||
| 17 |