Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
30 | protected function getDefaultInputDefinition() : InputDefinition |
||
31 | { |
||
32 | return new InputDefinition([ |
||
33 | new InputArgument('command', InputArgument::REQUIRED, 'The command to execute'), |
||
34 | new InputOption('--help', '-h', InputOption::VALUE_NONE, 'Display this help message'), |
||
35 | new InputOption('--version', '-V', InputOption::VALUE_NONE, 'Display this application version'), |
||
36 | ]); |
||
37 | } |
||
38 | } |
||
39 |