@@ -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 | } |
@@ -165,7 +165,7 @@ discard block |
||
| 165 | 165 | |
| 166 | 166 | // not fully namespaced, lets cascade |
| 167 | 167 | foreach ($this->namespace_cascade as $ns) { |
| 168 | - if (class_exists($fully_namespaced = $ns . $class_name)) { |
|
| 168 | + if (class_exists($fully_namespaced = $ns.$class_name)) { |
|
| 169 | 169 | $this->resolved($class_name, $fully_namespaced); |
| 170 | 170 | return $fully_namespaced; |
| 171 | 171 | } |
@@ -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) { |
@@ -47,6 +47,6 @@ |
||
| 47 | 47 | public function getModelOrControllerName() |
| 48 | 48 | { |
| 49 | 49 | preg_match(self::RX_MVC, $this->lament, $m); |
| 50 | - return $m[1] . '\\' . $m[2]; |
|
| 50 | + return $m[1].'\\'.$m[2]; |
|
| 51 | 51 | } |
| 52 | 52 | } |