@@ -33,7 +33,7 @@ discard block |
||
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 |
||
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())); |
@@ -35,7 +35,7 @@ discard block |
||
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 |
||
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 | } |