| @@ -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; | 
| @@ -67,7 +67,7 @@ | ||
| 67 | 67 |          foreach ($constructor->getParameters() as $param) { | 
| 68 | 68 | $id = $param->getType() | 
| 69 | 69 | ? $param->getType()->getName() | 
| 70 | - : 'settings.Constructor.' . $constructor->class . '.' . $param->getName(); | |
| 70 | + : 'settings.Constructor.'.$constructor->class.'.'.$param->getName(); | |
| 71 | 71 | |
| 72 | 72 | $ret [] = $this->container->get($id); | 
| 73 | 73 | } | 
| @@ -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; |