@@ -22,7 +22,7 @@ |
||
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 | } |
@@ -219,7 +219,7 @@ |
||
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( |
@@ -64,7 +64,7 @@ discard block |
||
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 |
||
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 | ), |