Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Tests | 9 |
CRAP Score | 1 |
Changes | 3 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
13 | 7 | public function __construct() |
|
14 | { |
||
15 | 7 | $this->commands = [ |
|
16 | 7 | 'pjbserver:start' => new Command\PjbServerStartCommand(), |
|
17 | 7 | 'pjbserver:restart' => new Command\PjbServerRestartCommand(), |
|
18 | 7 | 'pjbserver:stop' => new Command\PjbServerStopCommand(), |
|
19 | 7 | 'pjbserver:status' => new Command\PjbServerStatusCommand(), |
|
20 | 7 | 'pjbserver:reveal' => new Command\PjbServerRevealCommand() |
|
21 | 7 | ]; |
|
22 | 7 | } |
|
23 | |||
42 |