Conditions | 1 |
Paths | 1 |
Total Lines | 17 |
Code Lines | 11 |
Lines | 0 |
Ratio | 0 % |
Tests | 11 |
CRAP Score | 1 |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
26 | 7 | protected function configure() |
|
27 | { |
||
28 | 7 | $this->setName('pjbserver:reveal') |
|
29 | 7 | ->setDescription( |
|
30 | 'Print the underlying java cli command' |
||
31 | 7 | ) |
|
32 | 7 | ->addArgument( |
|
33 | 7 | 'config-file', |
|
34 | 7 | InputArgument::REQUIRED, |
|
35 | 'Configuration file, see ./dist/pjbserver.config.php.dist' |
||
36 | 7 | ) |
|
37 | |||
38 | 7 | ->setHelp(<<<EOT |
|
39 | Echo the underlying cli command (call to java) that will be called. |
||
40 | EOT |
||
41 | 7 | ); |
|
42 | 7 | } |
|
43 | |||
67 |