Passed
Push — master ( 3fec98...825426 )
by Koldo
02:42
created
src/Container/ProducerFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@
 block discarded – undo
18 18
         string $contextName = ConfigProvider::DEFAULT_CONTEXT
19 19
     ): Producer {
20 20
         $contextConfig = ConfigProvider::getContextConfig($contextName, $container->get(ConfigProvider::CONFIG_KEY));
21
-        $context = $container->get($contextConfig[ConfigProvider::CONTEXTS_TYPE_KEY] . self::SERVICE_SUFFIX);
21
+        $context = $container->get($contextConfig[ConfigProvider::CONTEXTS_TYPE_KEY].self::SERVICE_SUFFIX);
22 22
 
23 23
         return new JobProducer($context);
24 24
     }
Please login to merge, or discard this patch.
src/Container/Config/ConfigProvider.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
             ],
51 51
         ],
52 52
         'factories' => [
53
-            self::DEFAULT_CONTEXT . '.action.container' => ActionContainerFactory::class,
53
+            self::DEFAULT_CONTEXT.'.action.container' => ActionContainerFactory::class,
54 54
             MessageProcessor::class => MessageProcessorFactory::class,
55 55
             Producer::class => ProducerFactory::class,
56 56
         ],
Please login to merge, or discard this patch.