Completed
Push — master ( e90d96...66a61f )
by Sébastien
03:21
created
src/PjbServer/Tools/Console/Command/PjbServerRestartCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -54,6 +54,6 @@
 block discarded – undo
54 54
         $this->server = new StandaloneServer($config);
55 55
         $this->server->restart();
56 56
 
57
-        $output->write("Server successfully restarted on port $port" . PHP_EOL);
57
+        $output->write("Server successfully restarted on port $port".PHP_EOL);
58 58
     }
59 59
 }
Please login to merge, or discard this patch.
src/PjbServer/Tools/Console/Command/PjbServerStopCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -55,6 +55,6 @@
 block discarded – undo
55 55
 
56 56
         $this->server->stop();
57 57
 
58
-        $output->write("Server running on port $port successfully stopped" . PHP_EOL);
58
+        $output->write("Server running on port $port successfully stopped".PHP_EOL);
59 59
     }
60 60
 }
Please login to merge, or discard this patch.
src/PjbServer/Tools/Console/Command/PjbServerStartCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -56,6 +56,6 @@
 block discarded – undo
56 56
         $this->server = new StandaloneServer($config);
57 57
         $this->server->start();
58 58
 
59
-        $output->write("Server successfully started on port $port" . PHP_EOL);
59
+        $output->write("Server successfully started on port $port".PHP_EOL);
60 60
     }
61 61
 }
Please login to merge, or discard this patch.