@@ -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 | } |
@@ -20,7 +20,7 @@ |
||
| 20 | 20 | |
| 21 | 21 | // not fully namespaced, lets cascade |
| 22 | 22 | foreach ($this->namespace_cascade as $ns) { |
| 23 | - if (class_exists($fully_namespaced = $ns . $class_name)) { |
|
| 23 | + if (class_exists($fully_namespaced = $ns.$class_name)) { |
|
| 24 | 24 | $this->resolved($class_name, $fully_namespaced); |
| 25 | 25 | return $fully_namespaced; |
| 26 | 26 | } |
@@ -47,7 +47,7 @@ |
||
| 47 | 47 | |
| 48 | 48 | foreach ($dbg['interface_wiring'] as $interface => $wire) { |
| 49 | 49 | if (is_array($wire)) { |
| 50 | - $wire = array_shift($wire) . ' --array #' . count($wire); |
|
| 50 | + $wire = array_shift($wire).' --array #'.count($wire); |
|
| 51 | 51 | } |
| 52 | 52 | $dbg['interface_wiring'][$interface] = $wire; |
| 53 | 53 | } |
@@ -19,7 +19,7 @@ discard block |
||
| 19 | 19 | $this->lament = $configuration_string; |
| 20 | 20 | } |
| 21 | 21 | |
| 22 | - public function __toString(){ |
|
| 22 | + public function __toString() { |
|
| 23 | 23 | return $this->lament; |
| 24 | 24 | } |
| 25 | 25 | |
@@ -41,7 +41,7 @@ discard block |
||
| 41 | 41 | public function getModelOrControllerName() |
| 42 | 42 | { |
| 43 | 43 | preg_match(self::RX_MVC, $this->lament, $m); |
| 44 | - return $m[1] . '\\' . $m[2]; |
|
| 44 | + return $m[1].'\\'.$m[2]; |
|
| 45 | 45 | } |
| 46 | 46 | |
| 47 | 47 | public function hasClassNameModifier() |