Completed
Push — master ( 5d600e...ad819a )
by Arnaud
02:16
created
src/Collection/Collection.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -31,14 +31,14 @@
 block discarded – undo
31 31
     public function filter(callable $callback)
32 32
     {
33 33
         return new Self(
34
-          Fp\filter($callback, $this->values())
34
+            Fp\filter($callback, $this->values())
35 35
         );
36 36
     }
37 37
 
38 38
     public function transduce(callable $transducers, Fp\Reducer\Reducer $reducer, $init = null)
39 39
     {
40 40
         return new Self(
41
-          Fp\transduce($transducers, $reducer, $this->values(), $init)
41
+            Fp\transduce($transducers, $reducer, $this->values(), $init)
42 42
         );
43 43
     }
44 44
 
Please login to merge, or discard this patch.