Completed
Branch master (e5a20e)
by Boy
04:09
created
lib/InjectionException.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@
 block discarded – undo
30 30
             array_key_exists(0, $callableOrMethodStr) &&
31 31
             array_key_exists(0, $callableOrMethodStr)) {
32 32
             if (is_string($callableOrMethodStr[0]) && is_string($callableOrMethodStr[1])) {
33
-                $callableString .= $callableOrMethodStr[0].'::'.$callableOrMethodStr[1];
33
+                $callableString .= $callableOrMethodStr[0] . '::' . $callableOrMethodStr[1];
34 34
             } else if (is_object($callableOrMethodStr[0]) && is_string($callableOrMethodStr[1])) {
35 35
                 $callableString .= sprintf(
36 36
                     "[object(%s), '%s']",
Please login to merge, or discard this patch.
lib/Injector.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -270,7 +270,7 @@
 block discarded – undo
270 270
                 array_key_exists(1, $callableOrMethodStr)
271 271
             ) {
272 272
                 if (is_string($callableOrMethodStr[0]) && is_string($callableOrMethodStr[1])) {
273
-                    $errorDetail = " but received ['".$callableOrMethodStr[0]."', '".$callableOrMethodStr[1]."']";
273
+                    $errorDetail = " but received ['" . $callableOrMethodStr[0] . "', '" . $callableOrMethodStr[1] . "']";
274 274
                 }
275 275
             }
276 276
             throw new ConfigException(
Please login to merge, or discard this patch.