Passed
Push — master ( 573250...09a4aa )
by Koldo
02:19
created
src/Cli/StartQueueConsumer.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -50,7 +50,7 @@
 block discarded – undo
50 50
         $container = $this->actionContainer;
51 51
         $this->consumer->bindCallback(
52 52
             $queue,
53
-            static function (Message $message) use ($container) {
53
+            static function(Message $message) use ($container) {
54 54
                 try {
55 55
                     $jobPayload = JobPayload::createFromMessage($message);
56 56
                     $action = $container->get($jobPayload->type());
Please login to merge, or discard this patch.
src/Container/StartQueueConsumerFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@
 block discarded – undo
17 17
     ): StartQueueConsumer {
18 18
         return new StartQueueConsumer(
19 19
             $container->get(QueueConsumerInterface::class),
20
-            $container->get($contextName . '.action.container')
20
+            $container->get($contextName.'.action.container')
21 21
         );
22 22
     }
23 23
 }
Please login to merge, or discard this patch.
src/Container/Config/ConfigProvider.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -37,9 +37,9 @@
 block discarded – undo
37 37
             ],
38 38
         ],
39 39
         'factories' => [
40
-            self::DEFAULT_CONTEXT . '.action.container' => ActionContainerFactory::class,
41
-            self::DEFAULT_CONTEXT . '.message.processor' => MessageProcessorFactory::class,
42
-            self::DEFAULT_CONTEXT . '.message.producer' => ProducerFactory::class,
40
+            self::DEFAULT_CONTEXT.'.action.container' => ActionContainerFactory::class,
41
+            self::DEFAULT_CONTEXT.'.message.processor' => MessageProcessorFactory::class,
42
+            self::DEFAULT_CONTEXT.'.message.producer' => ProducerFactory::class,
43 43
             MessageProcessor::class => MessageProcessorFactory::class,
44 44
             Producer::class => ProducerFactory::class,
45 45
         ],
Please login to merge, or discard this patch.