Completed
Push — master ( 8857af...ec0102 )
by Sérgio
04:30
created
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
-    $fn = function ($el, array $ls) {
12
+    $fn = function($el, array $ls) {
13 13
         array_push($ls, $el);
14 14
         return $ls;
15 15
     };
Please login to merge, or discard this patch.
src/gt.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
-    $gt = function ($x, $y) {
14
+    $gt = function($x, $y) {
15 15
         return $x > $y;
16 16
     };
17 17
 
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 (\Closure $fn, array $ls) {
14
+    $each = function(\Closure $fn, array $ls) {
15 15
         array_walk($ls, $fn);
16 16
         return $ls;
17 17
     };
Please login to merge, or discard this patch.
src/lt.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
-    $gt = function ($x, $y) {
14
+    $gt = function($x, $y) {
15 15
         return $x > $y;
16 16
     };
17 17
 
Please login to merge, or discard this patch.