Passed
Push — main ( f9bc30...9f095f )
by Sammy
01:20
created
LeMarchand.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -58,7 +58,7 @@  discard block
 block discarded – undo
58 58
 
59 59
         foreach ($dbg['interface_wiring'] as $interface => $wire) {
60 60
             if (is_array($wire)) {
61
-                $wire = array_shift($wire) . ' --array #' . count($wire);
61
+                $wire = array_shift($wire).' --array #'.count($wire);
62 62
             }
63 63
             $dbg['interface_wiring'][$interface] = $wire;
64 64
         }
@@ -165,7 +165,7 @@  discard block
 block discarded – undo
165 165
 
166 166
         // not fully namespaced, lets cascade
167 167
         foreach ($this->namespace_cascade as $ns) {
168
-            if (class_exists($fully_namespaced = $ns . $class_name)) {
168
+            if (class_exists($fully_namespaced = $ns.$class_name)) {
169 169
                 $this->resolved($class_name, $fully_namespaced);
170 170
                 return $fully_namespaced;
171 171
             }
@@ -259,7 +259,7 @@  discard block
 block discarded – undo
259 259
                 if ($param->getType()) {
260 260
                     $construction_args [] = $this->get($param->getType()->getName());
261 261
                 } else {
262
-                    $setting = 'settings.Constructor.' . $constructor->class . '.' . $param->getName();
262
+                    $setting = 'settings.Constructor.'.$constructor->class.'.'.$param->getName();
263 263
                     $construction_args [] = $this->getSettings($setting);
264 264
                 }
265 265
                 // } catch (NotFoundExceptionInterface $e) {
Please login to merge, or discard this patch.
Configuration.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -47,6 +47,6 @@
 block discarded – undo
47 47
     public function getModelOrControllerName()
48 48
     {
49 49
         preg_match(self::RX_MVC, $this->lament, $m);
50
-        return $m[1] . '\\' . $m[2];
50
+        return $m[1].'\\'.$m[2];
51 51
     }
52 52
 }
Please login to merge, or discard this patch.