Completed
Push — master ( e6b0f2...148d74 )
by Sébastien
03:16
created
src/PjbServer/Tools/StandaloneServer.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -61,7 +61,7 @@  discard block
 block discarded – undo
61 61
      * @param LoggerInterface $logger
62 62
      *
63 63
      */
64
-    public function __construct(StandaloneServer\Config $config, LoggerInterface $logger=null)
64
+    public function __construct(StandaloneServer\Config $config, LoggerInterface $logger = null)
65 65
     {
66 66
         $this->config = $config;
67 67
 
@@ -173,7 +173,7 @@  discard block
 block discarded – undo
173 173
         $pid_file = $this->config->getPidFile();
174 174
         try {
175 175
             $pid = $this->getPid();
176
-            $running = $this->isProcessRunning($throws_exception=true);
176
+            $running = $this->isProcessRunning($throws_exception = true);
177 177
             if (!$running) {
178 178
                 if ($throws_exception) {
179 179
                     $msg = "Cannot stop: pid exists ($pid) but server process is not running";
@@ -248,7 +248,7 @@  discard block
 block discarded – undo
248 248
         $jars[] = $this->config->getServerJar();
249 249
         $classpath = implode(':', $jars);
250 250
 
251
-        $directives = ' -D' . implode(' -D', [
251
+        $directives = ' -D'.implode(' -D', [
252 252
                     'php.java.bridge.daemon="false"',
253 253
                     'php.java.bridge.threads=30'
254 254
         ]);
Please login to merge, or discard this patch.