Completed
Pull Request — master (#393)
by De Cramer
02:39
created
src/eXpansion/Framework/Core/Services/DedicatedConnection/Factory.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -101,7 +101,7 @@  discard block
 block discarded – undo
101 101
                 $this->console->getSfStyleOutput()->error(
102 102
                     [
103 103
                         "Looks like your Dedicated server is either offline or has wrong config settings",
104
-                        "Error message: " . $lastExcelption->getMessage()
104
+                        "Error message: ".$lastExcelption->getMessage()
105 105
                     ]
106 106
                 );
107 107
                 $this->logger->error(
@@ -171,14 +171,14 @@  discard block
 block discarded – undo
171 171
                     ]
172 172
                 );
173 173
                 $this->console->getSfStyleOutput()->block([
174
-                    "Host : " . $this->host,
175
-                    "Port : " . $this->port,
176
-                    "Timeout : " . $this->timeout,
177
-                    "User : " . $this->user,
174
+                    "Host : ".$this->host,
175
+                    "Port : ".$this->port,
176
+                    "Timeout : ".$this->timeout,
177
+                    "User : ".$this->user,
178 178
                     "Password : ****",
179 179
                 ]);
180 180
             }
181
-        } while($attempts < $maxAttempts && !is_null($lastExcelption));
181
+        } while ($attempts < $maxAttempts && !is_null($lastExcelption));
182 182
 
183 183
         return $lastExcelption;
184 184
     }
Please login to merge, or discard this patch.