Completed
Push — master ( 8e8e12...cf4981 )
by Sébastien
04:15
created
src/PjbServer/Tools/Console/Command/PjbServerRestartCommand.php 1 patch
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -24,15 +24,15 @@
 block discarded – undo
24 24
     protected function configure()
25 25
     {
26 26
         $this->setName('pjbserver:restart')
27
-             ->setDescription(
28
-                 'Restart the standalone pjb server (java)'
29
-               )
30
-             ->addArgument(
27
+                ->setDescription(
28
+                    'Restart the standalone pjb server (java)'
29
+                )
30
+                ->addArgument(
31 31
                 'config-file',
32 32
                 InputArgument::REQUIRED,
33 33
                 'Configuration file, see ./dist/pjbserver.config.php.dist'
34
-               )
35
-             ->setHelp(<<<EOT
34
+                )
35
+                ->setHelp(<<<EOT
36 36
 Start the php java bridge server in the background.
37 37
 EOT
38 38
         );
Please login to merge, or discard this patch.
src/PjbServer/Tools/Console/Command/PjbServerStopCommand.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -24,15 +24,15 @@
 block discarded – undo
24 24
     protected function configure()
25 25
     {
26 26
         $this->setName('pjbserver:stop')
27
-             ->setDescription(
28
-                 'Stop the standalone pjb server (java)'
29
-               )
27
+                ->setDescription(
28
+                    'Stop the standalone pjb server (java)'
29
+                )
30 30
             ->addArgument(
31 31
                 'config-file',
32 32
                 InputArgument::REQUIRED,
33 33
                 'Configuration file, see ./dist/pjbserver.config.php.dist'
34 34
             )
35
-             ->setHelp(<<<EOT
35
+                ->setHelp(<<<EOT
36 36
 Stop the standalone php java bridge server (running in the background).
37 37
 EOT
38 38
         );
Please login to merge, or discard this patch.
src/PjbServer/Tools/Console/Command/PjbServerStartCommand.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -24,16 +24,16 @@
 block discarded – undo
24 24
     protected function configure()
25 25
     {
26 26
         $this->setName('pjbserver:start')
27
-             ->setDescription(
28
-                 'Start the standalone pjb server (java)'
29
-               )
27
+                ->setDescription(
28
+                    'Start the standalone pjb server (java)'
29
+                )
30 30
             ->addArgument(
31 31
                 'config-file',
32 32
                 InputArgument::REQUIRED,
33 33
                 'Configuration file, see ./dist/pjbserver.config.php.dist'
34 34
             )
35 35
 
36
-             ->setHelp(<<<EOT
36
+                ->setHelp(<<<EOT
37 37
 Start the php java bridge server in the background.
38 38
 EOT
39 39
         );
Please login to merge, or discard this patch.
src/PjbServer/Tools/Console/Command/PjbServerStatusCommand.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -27,16 +27,16 @@
 block discarded – undo
27 27
     protected function configure()
28 28
     {
29 29
         $this->setName('pjbserver:status')
30
-             ->setDescription(
31
-                 'Get the status of the standalone pjb server (java)'
32
-               )
30
+                ->setDescription(
31
+                    'Get the status of the standalone pjb server (java)'
32
+                )
33 33
             ->addArgument(
34 34
                 'config-file',
35 35
                 InputArgument::REQUIRED,
36 36
                 'Configuration file, see ./dist/pjbserver.config.php.dist'
37 37
             )
38 38
 
39
-             ->setHelp(<<<EOT
39
+                ->setHelp(<<<EOT
40 40
 Get the status of the php java bridge server in the background.
41 41
 EOT
42 42
         );
Please login to merge, or discard this patch.
src/PjbServer/Tools/Console/Command/PjbServerRevealCommand.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -26,16 +26,16 @@
 block discarded – undo
26 26
     protected function configure()
27 27
     {
28 28
         $this->setName('pjbserver:reveal')
29
-             ->setDescription(
30
-                 'Print the underlying java cli command'
31
-               )
29
+                ->setDescription(
30
+                    'Print the underlying java cli command'
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(<<<EOT
38
+                ->setHelp(<<<EOT
39 39
 Echo the underlying cli command (call to java) that will be called.
40 40
 EOT
41 41
         );
Please login to merge, or discard this patch.