@@ -61,7 +61,7 @@ discard block |
||
| 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 |
||
| 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 |
||
| 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 | ]); |