@@ -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 | } |