Passed
Push — main ( 65d534...8369ee )
by Sammy
01:17
created
LeMarchand.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -65,7 +65,7 @@  discard block
 block discarded – undo
65 65
 
66 66
         foreach ($dbg['interface_wiring'] as $interface => $wire) {
67 67
             if (is_array($wire)) {
68
-                $wire = array_shift($wire) . ' --array #' . count($wire);
68
+                $wire = array_shift($wire).' --array #'.count($wire);
69 69
             }
70 70
             $dbg['interface_wiring'][$interface] = $wire;
71 71
         }
@@ -112,7 +112,7 @@  discard block
 block discarded – undo
112 112
 
113 113
         // 5. is it cascadable ?
114 114
         if (preg_match(self::RX_MVC, $configuration, $m) === 1) {
115
-            $class_name = $this->cascadeNamespace($m[1] . '\\' . $m[2]);
115
+            $class_name = $this->cascadeNamespace($m[1].'\\'.$m[2]);
116 116
 
117 117
             if (!isset($m[3])) {
118 118
                 return $this->getInstance($class_name);
@@ -169,7 +169,7 @@  discard block
 block discarded – undo
169 169
 
170 170
         // not fully namespaced, lets cascade
171 171
         foreach ($this->namespace_cascade as $ns) {
172
-            if (class_exists($fully_namespaced = $ns . $class_name)) {
172
+            if (class_exists($fully_namespaced = $ns.$class_name)) {
173 173
                 $this->resolved($class_name, $fully_namespaced);
174 174
                 return $fully_namespaced;
175 175
             }
@@ -263,7 +263,7 @@  discard block
 block discarded – undo
263 263
                 if ($param->getType()) {
264 264
                     $construction_args [] = $this->get($param->getType()->getName());
265 265
                 } else {
266
-                    $setting = 'settings.Constructor.' . $constructor->class . '.' . $param->getName();
266
+                    $setting = 'settings.Constructor.'.$constructor->class.'.'.$param->getName();
267 267
                     $construction_args [] = $this->getSettings($setting);
268 268
                 }
269 269
                 // } catch (NotFoundExceptionInterface $e) {
Please login to merge, or discard this patch.