@@ -172,7 +172,7 @@ discard block |
||
172 | 172 | |
173 | 173 | // not fully namespaced, lets cascade |
174 | 174 | foreach ($this->namespace_cascade as $ns) { |
175 | - if (class_exists($fully_namespaced = $ns . $class_name)) { |
|
175 | + if (class_exists($fully_namespaced = $ns.$class_name)) { |
|
176 | 176 | $this->resolved($class_name, $fully_namespaced); |
177 | 177 | return $fully_namespaced; |
178 | 178 | } |
@@ -259,7 +259,7 @@ discard block |
||
259 | 259 | if ($param->getType()) { |
260 | 260 | $construction_args [] = $this->get($param->getType()->getName()); |
261 | 261 | } else { |
262 | - $setting = 'settings.Constructor.' . $constructor->class . '.' . $param->getName(); |
|
262 | + $setting = 'settings.Constructor.'.$constructor->class.'.'.$param->getName(); |
|
263 | 263 | $construction_args [] = $this->getSettings($setting); |
264 | 264 | } |
265 | 265 | // } catch (NotFoundExceptionInterface $e) { |