@@ -143,17 +143,17 @@ |
||
| 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 | } |