@@ -63,7 +63,7 @@ discard block  | 
                                                    ||
| 63 | 63 | }  | 
                                                        
| 64 | 64 | |
| 65 | 65 |          foreach ($dbg['interface_wiring'] as $interface => $wire) { | 
                                                        
| 66 | - $dbg['interface_wiring'][$interface] = is_array($wire) ? array_shift($wire) . ' --array #' . count($wire) : $wire;  | 
                                                        |
| 66 | + $dbg['interface_wiring'][$interface] = is_array($wire) ? array_shift($wire).' --array #'.count($wire) : $wire;  | 
                                                        |
| 67 | 67 | }  | 
                                                        
| 68 | 68 | |
| 69 | 69 | return $dbg;  | 
                                                        
@@ -105,7 +105,7 @@ discard block  | 
                                                    ||
| 105 | 105 | |
| 106 | 106 | // vdt($configuration, __FUNCTION__);  | 
                                                        
| 107 | 107 |          if (preg_match(self::RX_MVC, $configuration, $m) === 1) { | 
                                                        
| 108 | - $class_name = $this->cascadeNamespace($m[1] . '\\' . $m[2]);  | 
                                                        |
| 108 | + $class_name = $this->cascadeNamespace($m[1].'\\'.$m[2]);  | 
                                                        |
| 109 | 109 | // vd($configuration, $class_name);  | 
                                                        
| 110 | 110 | |
| 111 | 111 |              if (!isset($m[3])) { | 
                                                        
@@ -168,7 +168,7 @@ discard block  | 
                                                    ||
| 168 | 168 | |
| 169 | 169 | // not fully namespaced, lets cascade  | 
                                                        
| 170 | 170 |          foreach ($this->namespace_cascade as $ns) { | 
                                                        
| 171 | -            if (class_exists($fully_namespaced = $ns . $class_name)) { | 
                                                        |
| 171 | +            if (class_exists($fully_namespaced = $ns.$class_name)) { | 
                                                        |
| 172 | 172 | $this->resolved($class_name, $fully_namespaced);  | 
                                                        
| 173 | 173 | return $fully_namespaced;  | 
                                                        
| 174 | 174 | }  | 
                                                        
@@ -262,7 +262,7 @@ discard block  | 
                                                    ||
| 262 | 262 |                  if ($param->getType()) { | 
                                                        
| 263 | 263 | $construction_args [] = $this->get($param->getType()->getName());  | 
                                                        
| 264 | 264 |                  } else { | 
                                                        
| 265 | - $setting = 'settings.Constructor.' . $constructor->class . '.' . $param->getName();  | 
                                                        |
| 265 | + $setting = 'settings.Constructor.'.$constructor->class.'.'.$param->getName();  | 
                                                        |
| 266 | 266 | $construction_args [] = $this->getSettings($setting);  | 
                                                        
| 267 | 267 | }  | 
                                                        
| 268 | 268 |                  // } catch (NotFoundExceptionInterface $e) { |