Completed
Push — master ( 0208a5...856b62 )
by Sergii
14:09 queued 08:34
created
src/Commands/RunServer.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -86,10 +86,10 @@  discard block
 block discarded – undo
86 86
             $this->WAMPServer->registerModule($transportProvider);
87 87
             $this->WAMPServer->start(!$this->runOnce);
88 88
         } else {
89
-            $serverCommand = ' ' . $this->getName() . $this->getCommandLineOptions();
89
+            $serverCommand = ' '.$this->getName().$this->getCommandLineOptions();
90 90
 
91 91
             if ($this->clientTransportProvider) {
92
-                $serverCommand .= ' --client-transport-provider=' . $this->clientTransportProvider;
92
+                $serverCommand .= ' --client-transport-provider='.$this->clientTransportProvider;
93 93
             }
94 94
 
95 95
             $this->addPidToLog(RunCommandInBackground::factory($serverCommand)->runInBackground(), DownWAMP::SERVER_PID_FILE);
@@ -105,12 +105,12 @@  discard block
 block discarded – undo
105 105
      */
106 106
     protected function getCommandLineOptions()
107 107
     {
108
-        $command = ' --port=' . $this->port .
109
-            ' --host=' . $this->host .
110
-            ' --realm=' . $this->realm;
108
+        $command = ' --port='.$this->port.
109
+            ' --host='.$this->host.
110
+            ' --realm='.$this->realm;
111 111
 
112 112
         if ($this->clientTransportProvider) {
113
-            $command .= ' --transport-provider=' . $this->clientTransportProvider;
113
+            $command .= ' --transport-provider='.$this->clientTransportProvider;
114 114
         }
115 115
 
116 116
         if ($this->noDebug) {
@@ -122,7 +122,7 @@  discard block
 block discarded – undo
122 122
         }
123 123
 
124 124
         if ($this->routePath) {
125
-            $command .= ' --route-path=' . $this->routePath;
125
+            $command .= ' --route-path='.$this->routePath;
126 126
         }
127 127
 
128 128
         if ($this->noLoop) {
Please login to merge, or discard this patch.