Completed
Push — master ( be024e...48e786 )
by Sérgio
02:43
created
src/always.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
-    $always = function ($x) {
15
-        return function () use ($x) {
14
+    $always = function($x) {
15
+        return function() use ($x) {
16 16
             return $x;
17 17
         };
18 18
     };
Please login to merge, or discard this patch.
src/prepend.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@
 block discarded – undo
9 9
 {
10 10
     $args = func_get_args();
11 11
 
12
-    $prepend = function ($x, array $xs) {
12
+    $prepend = function($x, array $xs) {
13 13
         return array_merge([$x], $xs);
14 14
     };
15 15
 
Please login to merge, or discard this patch.
src/getin.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@
 block discarded – undo
17 17
 {
18 18
     $args = func_get_args();
19 19
 
20
-    $getin = function (array $xs, array $ks, $notfound = false) {
20
+    $getin = function(array $xs, array $ks, $notfound = false) {
21 21
         if (false === isset($ks[0])) {
22 22
             return $xs;
23 23
         }
Please login to merge, or discard this patch.
src/get.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@
 block discarded – undo
15 15
 {
16 16
     $args = func_get_args();
17 17
 
18
-    $get = function (array $xs, $x, $notfound = false) {
18
+    $get = function(array $xs, $x, $notfound = false) {
19 19
         if (isset($xs[$x])) {
20 20
             return $xs[$x];
21 21
         }
Please login to merge, or discard this patch.
src/has.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
-    $has = function ($x, array $xs) {
14
+    $has = function($x, array $xs) {
15 15
         return array_key_exists($x, $xs);
16 16
     };
17 17
 
Please login to merge, or discard this patch.
src/reduce.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
-    $reduce = function (callable $fn, array $xs, $initial = null) {
16
+    $reduce = function(callable $fn, array $xs, $initial = null) {
17 17
         return array_reduce($xs, $fn, $initial);
18 18
     };
19 19
 
Please login to merge, or discard this patch.
src/each.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
-    $each = function (callable $fn, array $xs) {
14
+    $each = function(callable $fn, array $xs) {
15 15
         array_walk($xs, $fn);
16 16
         return $xs;
17 17
     };
Please login to merge, or discard this patch.
src/filter.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
-    $filter = function (callable $fn, array $xs) {
16
+    $filter = function(callable $fn, array $xs) {
17 17
         return array_filter($xs, $fn);
18 18
     };
19 19
 
Please login to merge, or discard this patch.
src/take.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
-    $take = function ($n, array $xs) {
14
+    $take = function($n, array $xs) {
15 15
         return array_slice($xs, 0, $n);
16 16
     };
17 17
 
Please login to merge, or discard this patch.