@@ -20,7 +20,7 @@ |
||
20 | 20 | * |
21 | 21 | * @return mixed |
22 | 22 | */ |
23 | - $reduce = function ($fn, $ls, $initial = null) { |
|
23 | + $reduce = function($fn, $ls, $initial = null) { |
|
24 | 24 | return array_reduce($ls, $fn, $initial); |
25 | 25 | }; |
26 | 26 |
@@ -11,7 +11,7 @@ |
||
11 | 11 | { |
12 | 12 | $args = func_get_args(); |
13 | 13 | |
14 | - $gt = function ($a, $b) { |
|
14 | + $gt = function($a, $b) { |
|
15 | 15 | return $a > $b; |
16 | 16 | }; |
17 | 17 |