Passed
Push — main ( c7f8cf...abbcf7 )
by Sammy
10:35 queued 03:53
created
src/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.
src/Configuration.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -60,7 +60,7 @@
 block discarded – undo
60 60
 
61 61
         $m = [];
62 62
         if (preg_match(self::RX_MVC, $this->lament, $m) === 1) {
63
-            $ret = $m[1] . '\\' . $m[2];
63
+            $ret = $m[1].'\\'.$m[2];
64 64
         } else {
65 65
         }
66 66
         return $ret;
Please login to merge, or discard this patch.
src/Prober.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -101,7 +101,7 @@
 block discarded – undo
101 101
 
102 102
         // not fully namespaced, lets cascade
103 103
         foreach ($this->cascade as $ns) {
104
-            if (class_exists($fully_namespaced = $ns . $class_name)) {
104
+            if (class_exists($fully_namespaced = $ns.$class_name)) {
105 105
                 $this::$cascade_cache[$class_name] = $fully_namespaced;
106 106
 
107 107
                 return $fully_namespaced;
Please login to merge, or discard this patch.
src/Factory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -89,7 +89,7 @@
 block discarded – undo
89 89
             // Get parameter type, if exists
90 90
             $id = $param->getType()
91 91
                 ? $param->getType()->getName()
92
-                : 'settings.Constructor.' . $constructor->class . '.' . $param->getName();
92
+                : 'settings.Constructor.'.$constructor->class.'.'.$param->getName();
93 93
             
94 94
             // Get resource with Id and append to return array
95 95
             $ret [] = $this->container->get($id);
Please login to merge, or discard this patch.