@@ -60,7 +60,7 @@ discard block |
||
| 60 | 60 | private function cascadeControllers($controller_name) |
| 61 | 61 | { |
| 62 | 62 | foreach ($this->getSettings('settings.controllers_namespaces') as $cns) { |
| 63 | - if (!is_null($instance = $this->getInstance($cns . $controller_name))) { |
|
| 63 | + if (!is_null($instance = $this->getInstance($cns.$controller_name))) { |
|
| 64 | 64 | return $instance; |
| 65 | 65 | } |
| 66 | 66 | } |
@@ -75,7 +75,7 @@ discard block |
||
| 75 | 75 | $construction_args = []; |
| 76 | 76 | if (!is_null($rc->getConstructor())) { |
| 77 | 77 | foreach ($rc->getConstructor()->getParameters() as $param) { |
| 78 | - $construction_args [] = $this->get($param->getType() . ''); |
|
| 78 | + $construction_args [] = $this->get($param->getType().''); |
|
| 79 | 79 | } |
| 80 | 80 | $instance = $rc->newInstanceArgs($construction_args); |
| 81 | 81 | } else { |