Completed
Push — master ( d8db80...b75b86 )
by Daniel
03:57
created
Transport/PubSub/SubscriberBuilder.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@
 block discarded – undo
33 33
      */
34 34
     public function buildQueue($queueName, QueueServiceInterface $queueService, QueueBagInterface $queueBag)
35 35
     {
36
-        if (! $queueBag instanceof SubscriberQueueBag) {
36
+        if (!$queueBag instanceof SubscriberQueueBag) {
37 37
             throw new \Exception('Unsupported QueueBag');
38 38
         }
39 39
         $queue = new Queue($this->getConnectionManager(), $queueBag, $this->logger);
Please login to merge, or discard this patch.
Transport/Worker/WorkerBuilder.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@
 block discarded – undo
31 31
      */
32 32
     public function buildQueue($queueName, QueueServiceInterface $queueService, QueueBagInterface $queueBag)
33 33
     {
34
-        if (! $queueBag instanceof WorkerQueueBag) {
34
+        if (!$queueBag instanceof WorkerQueueBag) {
35 35
             throw new \Exception('Unsupported QueueBag');
36 36
         }
37 37
         $queue = new Queue($this->getConnectionManager(), $queueBag, $this->logger);
Please login to merge, or discard this patch.