Completed
Push — 1.1 ( 39b04a...d8758a )
by David
13s
created
src/Objects/Queue.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -539,7 +539,7 @@
 block discarded – undo
539 539
                                     $consumer->isNoAck(),
540 540
                                     $consumer->isExclusive(),
541 541
                                     $consumer->isNoWait(),
542
-                                    function (AMQPMessage $msg) use ($consumer) {
542
+                                    function(AMQPMessage $msg) use ($consumer) {
543 543
                                         $consumer->callback($msg);
544 544
                                     },
545 545
                                     $consumer->getTicket(),
Please login to merge, or discard this patch.
tests/ClientTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -161,7 +161,7 @@
 block discarded – undo
161 161
     {
162 162
         $client = $this->makeClient();
163 163
         $queue = new Queue($client, 'test_direct_queue', [
164
-            new Consumer(function (AMQPMessage $msg) {
164
+            new Consumer(function(AMQPMessage $msg) {
165 165
                 $this->msgReceived = $msg;
166 166
             }, new NullLogger())
167 167
         ]);
Please login to merge, or discard this patch.
src/Client.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -308,7 +308,7 @@  discard block
 block discarded – undo
308 308
                         $this->connection_timeout,
309 309
                         $this->read_write_timeout,
310 310
                         $this->context,
311
-                        $this->keepalive ,
311
+                        $this->keepalive,
312 312
                         $this->heartbeat
313 313
                     );
314 314
                 } else {
@@ -325,7 +325,7 @@  discard block
 block discarded – undo
325 325
                         $this->connection_timeout,
326 326
                         $this->read_write_timeout,
327 327
                         $this->context,
328
-                        $this->keepalive ,
328
+                        $this->keepalive,
329 329
                         $this->heartbeat
330 330
                     );
331 331
                 }
@@ -359,7 +359,7 @@  discard block
 block discarded – undo
359 359
      */
360 360
     public function getQueues()
361 361
     {
362
-        return array_filter($this->rabbitMqObjects, function (RabbitMqObjectInterface $object) {
362
+        return array_filter($this->rabbitMqObjects, function(RabbitMqObjectInterface $object) {
363 363
             return $object instanceof QueueInterface;
364 364
         });
365 365
     }
Please login to merge, or discard this patch.