Completed
Push — master ( a3629c...c2f4fd )
by Sérgio
04:02
created
src/concat.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@
 block discarded – undo
11 11
 {
12 12
     $args = func_get_args();
13 13
 
14
-    $concat = function ($a, $b /* ...$args */) {
14
+    $concat = function($a, $b /* ...$args */) {
15 15
         $rest = array_slice(func_get_args(), 2);
16 16
 
17 17
         return call_user_func_array('array_merge', array_merge([$a, $b], $rest));
Please login to merge, or discard this patch.
src/gte.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.
src/ifelse.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -11,8 +11,8 @@
 block discarded – undo
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
             }
Please login to merge, or discard this patch.
src/lte.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.