Passed
Push — master ( 457a90...753c96 )
by Sébastien
02:13
created
src/Pipeline.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -46,7 +46,7 @@  discard block
 block discarded – undo
46 46
      * @param array $pipes
47 47
      * @param ProcessorInterface $processor
48 48
      */
49
-    public function __construct(array $pipes = [], ProcessorInterface $processor = null)
49
+    public function __construct(array $pipes = [ ], ProcessorInterface $processor = null)
50 50
     {
51 51
         $this->processor = $processor ?: new StackProcessor();
52 52
 
@@ -102,7 +102,7 @@  discard block
 block discarded – undo
102 102
      */
103 103
     private function add($pipe, $prepend = false)
104 104
     {
105
-        if (! $pipe instanceof PipeInterface) {
105
+        if (!$pipe instanceof PipeInterface) {
106 106
             $pipe = new Pipe($this->processor, $pipe);
107 107
         }
108 108
 
Please login to merge, or discard this patch.