Completed
Push — master ( 203e38...2cdd54 )
by Gerrit
13:04
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/DataLoader/SimpleSelectDataLoaderTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -219,7 +219,7 @@
 block discarded – undo
219 219
         $this->valueResolver->method("revertValue")->will($this->returnValueMap([
220 220
             [$this->mappings['foo'], $entity, "some_ipsum_service", ["foo_column" => "ipsum"]],
221 221
             [$this->mappings['bar'], $entity, "some_dolor_service", ["bar_column" => "dolor"]],
222
-            [$this->mappings['faz'], $entity, $fazService,          ["faz_column" => "sit"]],
222
+            [$this->mappings['faz'], $entity, $fazService, ["faz_column" => "sit"]],
223 223
         ]));
224 224
 
225 225
         $this->connection->expects($this->once())->method("update")->with(
Please login to merge, or discard this patch.
Tests/Mapping/Drivers/MappingXmlDriverTest.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -64,7 +64,7 @@  discard block
 block discarded – undo
64 64
             'bar' => new ServiceMapping('other_service', false, "in file '{$mappingFilePath}'"),
65 65
             'baz' => new ChoiceMapping('baz_column', [
66 66
                 'lorem' => new ServiceMapping("lorem_service", false, "in file '{$mappingFilePath}'"),
67
-                'ipsum' => new ServiceMapping("ipsum_service", true,  "in file '{$mappingFilePath}'"),
67
+                'ipsum' => new ServiceMapping("ipsum_service", true, "in file '{$mappingFilePath}'"),
68 68
             ], "in file '{$mappingFilePath}'"),
69 69
             'faz' => new ChoiceMapping(new Column("faz_column", Type::getType('string'), ['notnull' => true]), [
70 70
                 'lorem' => new ServiceMapping("lorem_service", false, "in file '{$mappingFilePath}'"),
@@ -129,7 +129,7 @@  discard block
 block discarded – undo
129 129
                 new CallDefinition("createValueObject", "@value_object.factory", [
130 130
                     new ChoiceMapping('baz_column', [
131 131
                         'lorem' => new ServiceMapping("lorem_service", false, "in file '{$mappingFilePath}'"),
132
-                        'ipsum' => new ServiceMapping("ipsum_service", true,  "in file '{$mappingFilePath}'"),
132
+                        'ipsum' => new ServiceMapping("ipsum_service", true, "in file '{$mappingFilePath}'"),
133 133
                     ], "in file '{$mappingFilePath}'")
134 134
                 ])
135 135
             ),
Please login to merge, or discard this patch.