@@ -11,7 +11,7 @@ |
||
11 | 11 | { |
12 | 12 | $args = func_get_args(); |
13 | 13 | |
14 | - $equals = function ($a, $b) { |
|
14 | + $equals = function($a, $b) { |
|
15 | 15 | return $a === $b; |
16 | 16 | }; |
17 | 17 |
@@ -17,7 +17,7 @@ |
||
17 | 17 | * |
18 | 18 | * @return bool |
19 | 19 | */ |
20 | - $not = function ($val) { |
|
20 | + $not = function($val) { |
|
21 | 21 | return !$val; |
22 | 22 | }; |
23 | 23 |
@@ -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 | }; |