@@ -95,7 +95,7 @@ |
||
95 | 95 | |
96 | 96 | $parameters = (new ReflectionMethod($className, '__construct'))->getParameters(); |
97 | 97 | |
98 | - $this->parameters[$id] = array_map(function (ReflectionParameter $parameter) use ($id) { |
|
98 | + $this->parameters[$id] = array_map(function(ReflectionParameter $parameter) use ($id) { |
|
99 | 99 | $type = null === $parameter->getType() ? '' : $parameter->getType()->getName(); |
100 | 100 | if (array_key_exists($parameter->getName(), $this->parameters[$id])) { |
101 | 101 | if (is_array($this->parameters[$id][$parameter->getName()]) |
@@ -71,7 +71,7 @@ |
||
71 | 71 | $container = ContainerBuilder::build([ |
72 | 72 | 'dependencies' => [ |
73 | 73 | 'factories' => [ |
74 | - 'some.test.class' => function (ContainerInterface $container) { |
|
74 | + 'some.test.class' => function(ContainerInterface $container) { |
|
75 | 75 | return new \SplStack(); |
76 | 76 | }, |
77 | 77 | ] |