Completed
Pull Request — master (#31)
by Tom
02:22
created
src/Pimple/Configurator.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -18,14 +18,14 @@
 block discarded – undo
18 18
         }
19 19
 
20 20
         foreach ($config as $key => $value) {
21
-            $container[$prefix . $key] = $value;
21
+            $container[$prefix.$key] = $value;
22 22
         }
23 23
     }
24 24
 
25 25
     public function addServiceConfig($container, ServiceConfig $config)
26 26
     {
27 27
         foreach ($config as $definition) {
28
-            $factory = function () use ($definition) {
28
+            $factory = function() use ($definition) {
29 29
                 $reflection = new ReflectionClass($definition->getClass());
30 30
 
31 31
                 $instance = $reflection->newInstanceArgs($definition->getArguments());
Please login to merge, or discard this patch.