Conditions | 1 |
Paths | 1 |
Total Lines | 12 |
Code Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Tests | 11 |
CRAP Score | 1 |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
22 | 5 | protected function configure() |
|
23 | { |
||
24 | 5 | $this |
|
25 | 5 | ->setName(self::COMMAND_NAME) |
|
26 | 5 | ->setDescription("Show configuration.") |
|
27 | 5 | ->addArgument( |
|
28 | 5 | self::ARG_CONFIG_PATH, |
|
29 | 5 | InputArgument::OPTIONAL, |
|
30 | 5 | 'Path to config file.', |
|
31 | 5 | $this->getDefaultConfiguration() |
|
32 | 5 | ); |
|
33 | 5 | } |
|
34 | |||
57 |