@@ -13,7 +13,7 @@ |
||
| 13 | 13 | { |
| 14 | 14 | $args = func_get_args(); |
| 15 | 15 | |
| 16 | - $gte = function ($a, $b) { |
|
| 16 | + $gte = function($a, $b) { |
|
| 17 | 17 | return $a >= $b; |
| 18 | 18 | }; |
| 19 | 19 | |
@@ -11,8 +11,8 @@ |
||
| 11 | 11 | { |
| 12 | 12 | $args = func_get_args(); |
| 13 | 13 | |
| 14 | - $ifelse = function (callable $condition, callable $ontrue, callable $onfalse) { |
|
| 15 | - return function ($x) use ($condition, $ontrue, $onfalse) { |
|
| 14 | + $ifelse = function(callable $condition, callable $ontrue, callable $onfalse) { |
|
| 15 | + return function($x) use ($condition, $ontrue, $onfalse) { |
|
| 16 | 16 | if ($condition($x)) { |
| 17 | 17 | return $ontrue($x); |
| 18 | 18 | } |
@@ -13,7 +13,7 @@ |
||
| 13 | 13 | { |
| 14 | 14 | $args = func_get_args(); |
| 15 | 15 | |
| 16 | - $lte = function ($a, $b) { |
|
| 16 | + $lte = function($a, $b) { |
|
| 17 | 17 | return $a <= $b; |
| 18 | 18 | }; |
| 19 | 19 | |