Passed
Push — master ( a08d02...d2cfac )
by Jakub
02:56
created
src/DependencyInjection/Request2CommandBusExtension.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -16,9 +16,9 @@
 block discarded – undo
16 16
      */
17 17
     public function load(array $configs, ContainerBuilder $container): void
18 18
     {
19
-        $loader = new XmlFileLoader(
19
+        $loader=new XmlFileLoader(
20 20
             $container,
21
-            new FileLocator(__DIR__ . '/../Resources/config')
21
+            new FileLocator(__DIR__.'/../Resources/config')
22 22
         );
23 23
 
24 24
         $loader->load('actions.xml');
Please login to merge, or discard this patch.
src/Request2CommandBusBundle.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@
 block discarded – undo
12 12
     public function getContainerExtension(): Extension
13 13
     {
14 14
         if ($this->extension === null) {
15
-            $this->extension = new Request2CommandBusExtension();
15
+            $this->extension=new Request2CommandBusExtension();
16 16
         }
17 17
 
18 18
         return $this->extension;
Please login to merge, or discard this patch.