Completed
Push — master ( 10853a...bfb363 )
by Daniel
04:02 queued 18s
created
Queue/Queue.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -143,17 +143,17 @@
 block discarded – undo
143 143
         do {
144 144
             try {
145 145
                 $failed = false;
146
-                fwrite($this->logOutput, 'start forceReconnect() - trying connect...' . PHP_EOL);
146
+                fwrite($this->logOutput, 'start forceReconnect() - trying connect...'.PHP_EOL);
147 147
                 $this->connection = $this->getConnectionManager()->getConnection($this->connectionName);
148 148
                 $this->channel = $this->getConnection()->channel();
149 149
                 $this->createQueue();
150 150
             } catch (\Exception $e) {
151 151
                 $failed = true;
152 152
                 sleep(3);
153
-                fwrite($this->logOutput, 'failed forceReconnect() - ' . $e->getMessage() . PHP_EOL);
153
+                fwrite($this->logOutput, 'failed forceReconnect() - '.$e->getMessage().PHP_EOL);
154 154
             }
155 155
         } while ($failed);
156
-        fwrite($this->logOutput, 'forceReconnect() - connected!' . PHP_EOL);
156
+        fwrite($this->logOutput, 'forceReconnect() - connected!'.PHP_EOL);
157 157
 
158 158
         return $this->channel;
159 159
     }
Please login to merge, or discard this patch.