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