Completed
Pull Request — master (#39)
by Tom
03:36
created
src/Pimple/PimpleContainerAdapter.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@  discard block
 block discarded – undo
33 33
         }
34 34
 
35 35
         foreach ($config as $key => $value) {
36
-            $this->container[$prefix . $key] = $value;
36
+            $this->container[$prefix.$key] = $value;
37 37
         }
38 38
     }
39 39
 
@@ -51,7 +51,7 @@  discard block
 block discarded – undo
51 51
 
52 52
     private function addServiceToContainer(ServiceDefinition $definition)
53 53
     {
54
-        $factory = function () use ($definition) {
54
+        $factory = function() use ($definition) {
55 55
             $reflection = new ReflectionClass($definition->getClass());
56 56
 
57 57
             $instance = $reflection->newInstanceArgs($this->resolveArguments($definition->getArguments()));
Please login to merge, or discard this patch.
src/League/ApplicationConfigServiceProvider.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@  discard block
 block discarded – undo
35 35
         $prefix = $this->keyPrefix();
36 36
 
37 37
         foreach ($this->config as $key => $value) {
38
-            $this->container->share($prefix . $key, function () use ($value) {
38
+            $this->container->share($prefix.$key, function() use ($value) {
39 39
                 return $value;
40 40
             });
41 41
         }
@@ -50,6 +50,6 @@  discard block
 block discarded – undo
50 50
             return '';
51 51
         }
52 52
 
53
-        return $this->prefix . $this->config->getSeparator();
53
+        return $this->prefix.$this->config->getSeparator();
54 54
     }
55 55
 }
Please login to merge, or discard this patch.