| Total Complexity | 2 |
| Total Lines | 18 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 12 | final class BaseLineFileHelper |
||
| 13 | { |
||
| 14 | private const BASELINE_FILE = 'baseline-file'; |
||
| 15 | |||
| 16 | public static function configureBaseLineFileArgument(Command $command): void |
||
| 17 | { |
||
| 18 | $command->addArgument( |
||
| 19 | self::BASELINE_FILE, |
||
| 20 | InputArgument::REQUIRED, 'Baseline file', |
||
| 21 | ); |
||
| 22 | } |
||
| 23 | |||
| 24 | /** |
||
| 25 | * @throws InvalidConfigException |
||
| 26 | */ |
||
| 27 | public static function getBaselineFile(InputInterface $input): BaseLineFileName |
||
| 30 | } |
||
| 31 | } |
||
| 32 |