Passed
Push — main ( daddd5...505711 )
by Sammy
01:32 queued 11s
created
Configuration.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@
 block discarded – undo
37 37
     public function getModelOrControllerName()
38 38
     {
39 39
         preg_match(self::RX_MVC, $this->lament, $m);
40
-        return $m[1] . '\\' . $m[2];
40
+        return $m[1].'\\'.$m[2];
41 41
     }
42 42
 
43 43
     public function hasClassNameModifier()
Please login to merge, or discard this patch.
LeMarchand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -47,7 +47,7 @@
 block discarded – undo
47 47
 
48 48
         foreach ($dbg['interface_wiring'] as $interface => $wire) {
49 49
             if (is_array($wire)) {
50
-                $wire = array_shift($wire) . ' --array #' . count($wire);
50
+                $wire = array_shift($wire).' --array #'.count($wire);
51 51
             }
52 52
             $dbg['interface_wiring'][$interface] = $wire;
53 53
         }
Please login to merge, or discard this patch.
ReflectionFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -82,7 +82,7 @@
 block discarded – undo
82 82
             if ($param->getType()) {
83 83
                 $construction_args [] = $container->get($param->getType()->getName());
84 84
             } else {
85
-                $setting = 'settings.Constructor.' . $constructor->class . '.' . $param->getName();
85
+                $setting = 'settings.Constructor.'.$constructor->class.'.'.$param->getName();
86 86
                 $construction_args [] = $container->get($setting);
87 87
             }
88 88
         }
Please login to merge, or discard this patch.