Completed
Push — master ( 8e8e12...cf4981 )
by Sébastien
04:15
created
src/PjbServer/Tools/Network/PortTester.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -73,7 +73,7 @@
 block discarded – undo
73 73
             }
74 74
         }
75 75
         if (!in_array($this->options['backend'], $this->supportedBackends)) {
76
-            throw new \InvalidArgumentException("Unsupported backend '" . $this->options['backend'] . "'");
76
+            throw new \InvalidArgumentException("Unsupported backend '".$this->options['backend']."'");
77 77
         }
78 78
     }
79 79
 
Please login to merge, or discard this patch.
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.
src/PjbServer/Tools/Console/Command/PjbServerRestartCommand.php 2 patches
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.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -59,7 +59,7 @@
 block discarded – undo
59 59
         $this->server = new StandaloneServer($config, $logger);
60 60
         $this->server->restart();
61 61
 
62
-        $logger->debug("Server output: \n" . $this->server->getOutput());
62
+        $logger->debug("Server output: \n".$this->server->getOutput());
63 63
 
64 64
         $output->writeln("Server successfully restarted on port $port");
65 65
         return 0;
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/LoggerTrait.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -24,11 +24,11 @@
 block discarded – undo
24 24
      */
25 25
     public function logServerConfig(ConsoleLogger $logger, Config $config)
26 26
     {
27
-        $logger->info("* config port       :" . $config->getPort());
28
-        $logger->info("* config log_file   :" . $config->getLogFile());
29
-        $logger->info("* config pid_file   :" . $config->getPidFile());
30
-        $logger->info("* config classpaths :" . implode(',', $config->getClasspaths()));
31
-        $logger->info("* config java_bin   :" . $config->getJavaBin());
32
-        $logger->info("* config server_jar :" . $config->getServerJar());
27
+        $logger->info("* config port       :".$config->getPort());
28
+        $logger->info("* config log_file   :".$config->getLogFile());
29
+        $logger->info("* config pid_file   :".$config->getPidFile());
30
+        $logger->info("* config classpaths :".implode(',', $config->getClasspaths()));
31
+        $logger->info("* config java_bin   :".$config->getJavaBin());
32
+        $logger->info("* config server_jar :".$config->getServerJar());
33 33
     }
34 34
 }
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.
src/PjbServer/Tools/StandaloneServer/Config.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -185,7 +185,7 @@  discard block
 block discarded – undo
185 185
     {
186 186
         // Four levels back.
187 187
         $ds  = DIRECTORY_SEPARATOR;
188
-        $dir = __DIR__ . "$ds..$ds..$ds..$ds..$ds";
188
+        $dir = __DIR__."$ds..$ds..$ds..$ds..$ds";
189 189
         $base_dir = realpath($dir);
190 190
         if (!$base_dir) {
191 191
             $message = "Cannot resolve project base directory.";
@@ -211,7 +211,7 @@  discard block
 block discarded – undo
211 211
 
212 212
         // Step 2: server_jar file must exists
213 213
         if (!is_file($config['server_jar']) || !is_readable($config['server_jar'])) {
214
-            throw new Exception\InvalidArgumentException("Server jar file not exists or unreadable. server-jar: '" . $config['server_jar'] ."'");
214
+            throw new Exception\InvalidArgumentException("Server jar file not exists or unreadable. server-jar: '".$config['server_jar']."'");
215 215
         }
216 216
 
217 217
         // Step 3: log and pid file should be creatable
Please login to merge, or discard this patch.