Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
17 | public static function configureBaseLineFileArgument(Command $command): void |
||
18 | { |
||
19 | $command->addArgument( |
||
20 | self::BASELINE_FILE, |
||
21 | InputArgument::REQUIRED, 'Baseline file' |
||
22 | ); |
||
23 | $command->addOption( |
||
24 | self::BASELINE_FILE, |
||
25 | null, |
||
26 | InputOption::VALUE_REQUIRED, |
||
27 | 'Path to the root of the project you are creating baseline for' |
||
28 | ); |
||
39 |