| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 29 | protected function getDefaultInputDefinition() |
||
| 30 | { |
||
| 31 | return new InputDefinition(array( |
||
| 32 | new InputArgument('command', InputArgument::REQUIRED, 'The command to execute'), |
||
| 33 | |||
| 34 | new InputOption('--help', '-h', InputOption::VALUE_NONE, 'Display this help message.'), |
||
| 35 | //new InputOption('--verbose', '-v|vv|vvv', InputOption::VALUE_NONE, 'Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug.'), |
||
| 36 | new InputOption('--version', '-V', InputOption::VALUE_NONE, 'Display the Blend version.'), |
||
| 37 | )); |
||
| 39 | } |