Completed
Pull Request — master (#11)
by Sébastien
11:52 queued 01:16
created
src/PjbServer/Tools/Console/Command/PjbServerStatusCommand.php 1 patch
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -26,20 +26,20 @@
 block discarded – undo
26 26
     protected function configure(): void
27 27
     {
28 28
         $this->setName('pjbserver:status')
29
-             ->setDescription(
30
-                 'Get the status of the standalone pjb server (java)'
31
-             )
29
+                ->setDescription(
30
+                    'Get the status of the standalone pjb server (java)'
31
+                )
32 32
             ->addArgument(
33 33
                 'config-file',
34 34
                 InputArgument::REQUIRED,
35 35
                 'Configuration file, see ./dist/pjbserver.config.php.dist'
36 36
             )
37 37
 
38
-             ->setHelp(
39
-                 <<<'EOT'
38
+                ->setHelp(
39
+                    <<<'EOT'
40 40
 Get the status of the php java bridge server in the background.
41 41
 EOT
42
-             );
42
+                );
43 43
     }
44 44
 
45 45
     protected function execute(InputInterface $input, OutputInterface $output)
Please login to merge, or discard this patch.
src/PjbServer/Tools/Console/Command/PjbServerRevealCommand.php 1 patch
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -25,20 +25,20 @@
 block discarded – undo
25 25
     protected function configure(): void
26 26
     {
27 27
         $this->setName('pjbserver:reveal')
28
-             ->setDescription(
29
-                 'Print the underlying java cli command'
30
-             )
28
+                ->setDescription(
29
+                    'Print the underlying java cli command'
30
+                )
31 31
             ->addArgument(
32 32
                 'config-file',
33 33
                 InputArgument::REQUIRED,
34 34
                 'Configuration file, see ./dist/pjbserver.config.php.dist'
35 35
             )
36 36
 
37
-             ->setHelp(
38
-                 <<<'EOT'
37
+                ->setHelp(
38
+                    <<<'EOT'
39 39
 Echo the underlying cli command (call to java) that will be called.
40 40
 EOT
41
-             );
41
+                );
42 42
     }
43 43
 
44 44
     protected function execute(InputInterface $input, OutputInterface $output)
Please login to merge, or discard this patch.
src/PjbServer/Tools/Console/Command/PjbServerRestartCommand.php 1 patch
Indentation   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -25,19 +25,19 @@
 block discarded – undo
25 25
     protected function configure(): void
26 26
     {
27 27
         $this->setName('pjbserver:restart')
28
-             ->setDescription(
29
-                 'Restart the standalone pjb server (java)'
30
-             )
31
-             ->addArgument(
32
-                 'config-file',
33
-                 InputArgument::REQUIRED,
34
-                 'Configuration file, see ./dist/pjbserver.config.php.dist'
35
-             )
36
-             ->setHelp(
37
-                 <<<'EOT'
28
+                ->setDescription(
29
+                    'Restart the standalone pjb server (java)'
30
+                )
31
+                ->addArgument(
32
+                    'config-file',
33
+                    InputArgument::REQUIRED,
34
+                    'Configuration file, see ./dist/pjbserver.config.php.dist'
35
+                )
36
+                ->setHelp(
37
+                    <<<'EOT'
38 38
 Start the php java bridge server in the background.
39 39
 EOT
40
-             );
40
+                );
41 41
     }
42 42
 
43 43
     protected function execute(InputInterface $input, OutputInterface $output)
Please login to merge, or discard this patch.
src/PjbServer/Tools/Console/Command/PjbServerStopCommand.php 1 patch
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -25,19 +25,19 @@
 block discarded – undo
25 25
     protected function configure(): void
26 26
     {
27 27
         $this->setName('pjbserver:stop')
28
-             ->setDescription(
29
-                 'Stop the standalone pjb server (java)'
30
-             )
28
+                ->setDescription(
29
+                    'Stop the standalone pjb server (java)'
30
+                )
31 31
             ->addArgument(
32 32
                 'config-file',
33 33
                 InputArgument::REQUIRED,
34 34
                 'Configuration file, see ./dist/pjbserver.config.php.dist'
35 35
             )
36
-             ->setHelp(
37
-                 <<<'EOT'
36
+                ->setHelp(
37
+                    <<<'EOT'
38 38
 Stop the standalone php java bridge server (running in the background).
39 39
 EOT
40
-             );
40
+                );
41 41
     }
42 42
 
43 43
     protected function execute(InputInterface $input, OutputInterface $output)
Please login to merge, or discard this patch.
src/PjbServer/Tools/Console/Command/PjbServerStartCommand.php 1 patch
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -25,20 +25,20 @@
 block discarded – undo
25 25
     protected function configure(): void
26 26
     {
27 27
         $this->setName('pjbserver:start')
28
-             ->setDescription(
29
-                 'Start the standalone pjb server (java)'
30
-             )
28
+                ->setDescription(
29
+                    'Start the standalone pjb server (java)'
30
+                )
31 31
             ->addArgument(
32 32
                 'config-file',
33 33
                 InputArgument::REQUIRED,
34 34
                 'Configuration file, see ./dist/pjbserver.config.php.dist'
35 35
             )
36 36
 
37
-             ->setHelp(
38
-                 <<<'EOT'
37
+                ->setHelp(
38
+                    <<<'EOT'
39 39
 Start the php java bridge server in the background.
40 40
 EOT
41
-             );
41
+                );
42 42
     }
43 43
 
44 44
     protected function execute(InputInterface $input, OutputInterface $output)
Please login to merge, or discard this patch.
bin/pjbserver-tools.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -5,7 +5,7 @@
 block discarded – undo
5 5
     // Step 1: init autoloader
6 6
 
7 7
     $autoloadFiles = [__DIR__ . '/../vendor/autoload.php',
8
-                           __DIR__ . '/../../../autoload.php'];
8
+                            __DIR__ . '/../../../autoload.php'];
9 9
 
10 10
     $found = false;
11 11
     foreach ($autoloadFiles as $autoloadFile) {
Please login to merge, or discard this patch.