Completed
Push — master ( 783c9c...7d0a0b )
by Sébastien
03:32
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
@@ -89,7 +89,7 @@  discard block
 block discarded – undo
89 89
     public function pipe($last)
90 90
     {
91 91
         $this->clear();
92
-        $this->pipes[] = $last;
92
+        $this->pipes[ ] = $last;
93 93
 
94 94
         return $this;
95 95
     }
Please login to merge, or discard this patch.