@@ -9,7 +9,7 @@ |
||
9 | 9 | { |
10 | 10 | $args = func_get_args(); |
11 | 11 | |
12 | - $fn = function ($el, array $ls) { |
|
12 | + $fn = function($el, array $ls) { |
|
13 | 13 | array_push($ls, $el); |
14 | 14 | return $ls; |
15 | 15 | }; |
@@ -11,7 +11,7 @@ |
||
11 | 11 | { |
12 | 12 | $args = func_get_args(); |
13 | 13 | |
14 | - $gt = function ($x, $y) { |
|
14 | + $gt = function($x, $y) { |
|
15 | 15 | return $x > $y; |
16 | 16 | }; |
17 | 17 |
@@ -11,7 +11,7 @@ |
||
11 | 11 | { |
12 | 12 | $args = func_get_args(); |
13 | 13 | |
14 | - $each = function (\Closure $fn, array $ls) { |
|
14 | + $each = function(\Closure $fn, array $ls) { |
|
15 | 15 | array_walk($ls, $fn); |
16 | 16 | return $ls; |
17 | 17 | }; |
@@ -11,7 +11,7 @@ |
||
11 | 11 | { |
12 | 12 | $args = func_get_args(); |
13 | 13 | |
14 | - $gt = function ($x, $y) { |
|
14 | + $gt = function($x, $y) { |
|
15 | 15 | return $x > $y; |
16 | 16 | }; |
17 | 17 |