Conditions | 1 |
Paths | 1 |
Total Lines | 7 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
24 | protected function getDefaultInputDefinition() : InputDefinition |
||
25 | { |
||
26 | return new InputDefinition(array( |
||
27 | new InputArgument('command', InputArgument::REQUIRED, 'The command to execute'), |
||
28 | new InputOption('--help', '-h', InputOption::VALUE_NONE, 'Display this help message'), |
||
29 | )); |
||
30 | } |
||
31 | } |
||
32 |