@@ -37,7 +37,7 @@ |
||
| 37 | 37 | public function getModelOrControllerName() |
| 38 | 38 | { |
| 39 | 39 | preg_match(self::RX_MVC, $this->lament, $m); |
| 40 | - return $m[1] . '\\' . $m[2]; |
|
| 40 | + return $m[1].'\\'.$m[2]; |
|
| 41 | 41 | } |
| 42 | 42 | |
| 43 | 43 | public function hasClassNameModifier() |
@@ -50,7 +50,7 @@ |
||
| 50 | 50 | if ($param->getType()) { |
| 51 | 51 | $construction_args [] = $container->get($param->getType()->getName()); |
| 52 | 52 | } else { |
| 53 | - $setting = 'settings.Constructor.' . $constructor->class . '.' . $param->getName(); |
|
| 53 | + $setting = 'settings.Constructor.'.$constructor->class.'.'.$param->getName(); |
|
| 54 | 54 | $construction_args [] = $container->getSettings($setting); |
| 55 | 55 | } |
| 56 | 56 | } |
@@ -58,7 +58,7 @@ discard block |
||
| 58 | 58 | |
| 59 | 59 | foreach ($dbg['interface_wiring'] as $interface => $wire) { |
| 60 | 60 | if (is_array($wire)) { |
| 61 | - $wire = array_shift($wire) . ' --array #' . count($wire); |
|
| 61 | + $wire = array_shift($wire).' --array #'.count($wire); |
|
| 62 | 62 | } |
| 63 | 63 | $dbg['interface_wiring'][$interface] = $wire; |
| 64 | 64 | } |
@@ -178,7 +178,7 @@ discard block |
||
| 178 | 178 | |
| 179 | 179 | // not fully namespaced, lets cascade |
| 180 | 180 | foreach ($this->namespace_cascade as $ns) { |
| 181 | - if (class_exists($fully_namespaced = $ns . $class_name)) { |
|
| 181 | + if (class_exists($fully_namespaced = $ns.$class_name)) { |
|
| 182 | 182 | $this->resolved($class_name, $fully_namespaced); |
| 183 | 183 | return $fully_namespaced; |
| 184 | 184 | } |