@@ -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 | } |
@@ -60,7 +60,7 @@ |
||
60 | 60 | |
61 | 61 | $m = []; |
62 | 62 | if (preg_match(self::RX_MVC, $this->lament, $m) === 1) { |
63 | - $ret = $m[1] . '\\' . $m[2]; |
|
63 | + $ret = $m[1].'\\'.$m[2]; |
|
64 | 64 | } else { |
65 | 65 | } |
66 | 66 | return $ret; |
@@ -101,7 +101,7 @@ |
||
101 | 101 | |
102 | 102 | // not fully namespaced, lets cascade |
103 | 103 | foreach ($this->cascade as $ns) { |
104 | - if (class_exists($fully_namespaced = $ns . $class_name)) { |
|
104 | + if (class_exists($fully_namespaced = $ns.$class_name)) { |
|
105 | 105 | $this::$cascade_cache[$class_name] = $fully_namespaced; |
106 | 106 | |
107 | 107 | return $fully_namespaced; |
@@ -89,7 +89,7 @@ |
||
89 | 89 | // Get parameter type, if exists |
90 | 90 | $id = $param->getType() |
91 | 91 | ? $param->getType()->getName() |
92 | - : 'settings.Constructor.' . $constructor->class . '.' . $param->getName(); |
|
92 | + : 'settings.Constructor.'.$constructor->class.'.'.$param->getName(); |
|
93 | 93 | |
94 | 94 | // Get resource with Id and append to return array |
95 | 95 | $ret [] = $this->container->get($id); |