@@ -1,10 +1,10 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | 2 | /** |
| 3 | - * Created by IntelliJ IDEA. |
|
| 4 | - * User: alemaire |
|
| 5 | - * Date: 06/07/2015 |
|
| 6 | - * Time: 11:04 |
|
| 7 | - */ |
|
| 3 | + * Created by IntelliJ IDEA. |
|
| 4 | + * User: alemaire |
|
| 5 | + * Date: 06/07/2015 |
|
| 6 | + * Time: 11:04 |
|
| 7 | + */ |
|
| 8 | 8 | |
| 9 | 9 | namespace Fp\Collection; |
| 10 | 10 | use Fp; |
@@ -31,14 +31,14 @@ discard block |
||
| 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 | |