Completed
Push — master ( 4a4bf4...63fe9e )
by Gerrit
02:30
created
DependencyInjection/AddiksRDMExtension.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@
 block discarded – undo
22 22
         $configuration = new Configuration();
23 23
         $config = $this->processConfiguration($configuration, $configs);
24 24
 
25
-        $loader = new Loader\XmlFileLoader($container, new FileLocator(__DIR__.'/../Resources/config'));
25
+        $loader = new Loader\XmlFileLoader($container, new FileLocator(__DIR__ . '/../Resources/config'));
26 26
         $loader->load('services.xml');
27 27
     }
28 28
 }
Please login to merge, or discard this patch.
Tests/Mapping/Drivers/MappingXmlDriverTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -59,7 +59,7 @@
 block discarded – undo
59 59
             'bar' => new ServiceMapping('other_service', false, "in file '{$mappingFilePath}'"),
60 60
             'baz' => new ChoiceMapping('baz_column', [
61 61
                 'lorem' => new ServiceMapping("lorem_service", false, "in file '{$mappingFilePath}'"),
62
-                'ipsum' => new ServiceMapping("ipsum_service", true,  "in file '{$mappingFilePath}'"),
62
+                'ipsum' => new ServiceMapping("ipsum_service", true, "in file '{$mappingFilePath}'"),
63 63
             ], "in file '{$mappingFilePath}'"),
64 64
             'faz' => new ChoiceMapping(new Column("faz_column", Type::getType('string'), ['notnull' => true]), [
65 65
                 'lorem' => new ServiceMapping("lorem_service", false, "in file '{$mappingFilePath}'"),
Please login to merge, or discard this patch.