Passed
Branch master (16692c)
by Jean
04:17
created
src/DeferredCallChain.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@  discard block
 block discarded – undo
28 28
      */
29 29
     public final function __call($method, array $arguments)
30 30
     {
31
-        $this->stack[ $method ] = $arguments;
31
+        $this->stack[$method] = $arguments;
32 32
 
33 33
         return $this;
34 34
     }
@@ -51,7 +51,7 @@  discard block
 block discarded – undo
51 51
 
52 52
         foreach ($this->stack as $method => $arguments) {
53 53
             $string .= '->';
54
-            $string .= $method.'(';
54
+            $string .= $method . '(';
55 55
             $string .= implode(', ', array_map(function($argument) {
56 56
                 return var_export($argument, true);
57 57
             }, $arguments));
Please login to merge, or discard this patch.