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