Completed
Push — master ( 302780...59a153 )
by
unknown
01:53
created
src/Pipeline.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@  discard block
 block discarded – undo
23 23
      *
24 24
      * @var callable[]
25 25
      */
26
-    private $pipes = [];
26
+    private $pipes = [ ];
27 27
 
28 28
     /**
29 29
      * The destination of the last pipe
@@ -86,7 +86,7 @@  discard block
 block discarded – undo
86 86
      */
87 87
     public function pipe($last)
88 88
     {
89
-        $this->pipes[] = $last;
89
+        $this->pipes[ ] = $last;
90 90
 
91 91
         return $this;
92 92
     }
Please login to merge, or discard this patch.