Passed
Push — main ( 56f34e...665969 )
by Sammy
01:21
created
ReflectionFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -50,7 +50,7 @@
 block discarded – undo
50 50
                 if ($param->getType()) {
51 51
                     $construction_args [] = $container->get($param->getType()->getName());
52 52
                 } else {
53
-                    $setting = 'settings.Constructor.' . $constructor->class . '.' . $param->getName();
53
+                    $setting = 'settings.Constructor.'.$constructor->class.'.'.$param->getName();
54 54
                     $construction_args [] = $container->getSettings($setting);
55 55
                 }
56 56
             }
Please login to merge, or discard this patch.
LeMarchand.php 1 patch
Spacing   +2 added lines, -2 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
         }
@@ -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.