Passed
Push — main ( 7aac96...fe86f9 )
by Sammy
01:37
created
LeMarchand.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -60,7 +60,7 @@  discard block
 block discarded – undo
60 60
     private function cascadeControllers($controller_name)
61 61
     {
62 62
         foreach ($this->getSettings('settings.controllers_namespaces') as $cns) {
63
-            if (!is_null($instance = $this->getInstance($cns . $controller_name))) {
63
+            if (!is_null($instance = $this->getInstance($cns.$controller_name))) {
64 64
                 return $instance;
65 65
             }
66 66
         }
@@ -75,7 +75,7 @@  discard block
 block discarded – undo
75 75
             $construction_args = [];
76 76
             if (!is_null($rc->getConstructor())) {
77 77
                 foreach ($rc->getConstructor()->getParameters() as $param) {
78
-                    $construction_args [] = $this->get($param->getType() . '');
78
+                    $construction_args [] = $this->get($param->getType().'');
79 79
                 }
80 80
                 $instance = $rc->newInstanceArgs($construction_args);
81 81
             } else {
Please login to merge, or discard this patch.