Passed
Push — main ( b79f9e...612a22 )
by Sammy
02:02
created
LeMarchand.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -63,7 +63,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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) {
Please login to merge, or discard this patch.