| Conditions | 1 |
| Paths | 1 |
| Total Lines | 14 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 9 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 14 | 1 | protected function configure() |
|
| 15 | { |
||
| 16 | 1 | $this->ignoreValidationErrors(); |
|
| 17 | |||
| 18 | 1 | $this |
|
| 19 | 1 | ->setName('z:help') |
|
| 20 | 1 | ->setDescription('Shows help') |
|
| 21 | 1 | ->setDefinition( |
|
| 22 | array( |
||
| 23 | 1 | new Input\InputArgument('command_name', Input\InputArgument::OPTIONAL, 'The command name', 'z:help'), |
|
| 24 | ) |
||
| 25 | 1 | ) |
|
| 26 | ; |
||
| 27 | 1 | } |
|
| 28 | |||
| 54 |