Passed
Push — main ( 52c3fb...56f34e )
by Sammy
01:27
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
         }
@@ -140,7 +140,7 @@  discard block
 block discarded – undo
140 140
         return $ret;
141 141
     }
142 142
 
143
-    private function cascadeInstance(Configuration $configuration){
143
+    private function cascadeInstance(Configuration $configuration) {
144 144
         $class_name = $configuration->getModelOrControllerName();
145 145
         $class_name = $this->cascadeNamespace($class_name);
146 146
 
@@ -178,7 +178,7 @@  discard block
 block discarded – undo
178 178
 
179 179
         // not fully namespaced, lets cascade
180 180
         foreach ($this->namespace_cascade as $ns) {
181
-            if (class_exists($fully_namespaced = $ns . $class_name)) {
181
+            if (class_exists($fully_namespaced = $ns.$class_name)) {
182 182
                 $this->resolved($class_name, $fully_namespaced);
183 183
                 return $fully_namespaced;
184 184
             }
Please login to merge, or discard this patch.