@@ -11,9 +11,9 @@ |
||
| 11 | 11 | { |
| 12 | 12 | $args = func_get_args(); |
| 13 | 13 | |
| 14 | - $each = function (\Closure $fn, $ls) { |
|
| 14 | + $each = function(\Closure $fn, $ls) { |
|
| 15 | 15 | if ($ls instanceof \Iterator) { |
| 16 | - iterator_apply($ls, function () use ($fn, $ls) { |
|
| 16 | + iterator_apply($ls, function() use ($fn, $ls) { |
|
| 17 | 17 | $args = [ |
| 18 | 18 | $ls->current(), |
| 19 | 19 | $ls->key() |
@@ -11,7 +11,7 @@ |
||
| 11 | 11 | { |
| 12 | 12 | $args = func_get_args(); |
| 13 | 13 | |
| 14 | - $not = function ($x) { |
|
| 14 | + $not = function($x) { |
|
| 15 | 15 | return !$x; |
| 16 | 16 | }; |
| 17 | 17 | |
@@ -11,7 +11,7 @@ |
||
| 11 | 11 | { |
| 12 | 12 | $args = func_get_args(); |
| 13 | 13 | |
| 14 | - $equals = function ($x, $y) { |
|
| 14 | + $equals = function($x, $y) { |
|
| 15 | 15 | return $x === $y; |
| 16 | 16 | }; |
| 17 | 17 | |