Completed
Push — master ( 06dd79...66818b )
by Sébastien
02:04
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
@@ -76,7 +76,7 @@  discard block
 block discarded – undo
76 76
      */
77 77
     public function pipe($last)
78 78
     {
79
-        $this->pipes[] = $last;
79
+        $this->pipes[ ] = $last;
80 80
     }
81 81
 
82 82
     /**
Please login to merge, or discard this patch.