Conditions | 1 |
Paths | 1 |
Total Lines | 17 |
Code Lines | 11 |
Lines | 0 |
Ratio | 0 % |
Tests | 11 |
CRAP Score | 1 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
24 | 1 | protected function configure() |
|
25 | { |
||
26 | 1 | $this->setName('pjbserver:start') |
|
27 | 1 | ->setDescription( |
|
28 | 'Start the standalone pjb server (java)' |
||
29 | 1 | ) |
|
30 | 1 | ->addArgument( |
|
31 | 1 | 'config-file', |
|
32 | 1 | InputArgument::REQUIRED, |
|
33 | 'Configuration file, see ./dist/pjbserver.config.php.dist' |
||
34 | 1 | ) |
|
35 | |||
36 | 1 | ->setHelp(<<<EOT |
|
37 | Start the php java bridge server in the background. |
||
38 | EOT |
||
39 | 1 | ); |
|
40 | 1 | } |
|
41 | |||
62 |