| Conditions | 1 |
| Paths | 1 |
| Total Lines | 5 |
| Code Lines | 2 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 3 |
| CRAP Score | 1 |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php declare(strict_types=1); |
||
| 10 | 7 | public static function import(array $command): Command |
|
| 11 | { |
||
| 12 | 7 | Assert::requireFields(['alias', 'bin'], $command, 'PhiveInstallCommand'); |
|
| 13 | |||
| 14 | 5 | return new PhiveInstallCommand($command['alias'], $command['bin'], $command['trust'] ?? false, $command['unsigned'] ?? false); |
|
| 15 | } |
||
| 17 |