Passed
Pull Request — master (#12)
by frey
02:26
created
src/LaravelQueueCMQServiceProvider.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@  discard block
 block discarded – undo
16 16
     public function register()
17 17
     {
18 18
         $this->mergeConfigFrom(
19
-            __DIR__.'/../config/cmq.php', 'queue.connections.cmq'
19
+            __DIR__ . '/../config/cmq.php', 'queue.connections.cmq'
20 20
         );
21 21
     }
22 22
 
@@ -30,7 +30,7 @@  discard block
 block discarded – undo
30 30
         /** @var QueueManager $queue */
31 31
         $queue = $this->app['queue'];
32 32
 
33
-        $queue->addConnector('cmq', function () {
33
+        $queue->addConnector('cmq', function() {
34 34
             return new CMQConnector();
35 35
         });
36 36
     }
Please login to merge, or discard this patch.