Completed
Push — master ( 18f946...8857af )
by Sérgio
02:34
created
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.
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   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -11,10 +11,10 @@
 block discarded – undo
11 11
 {
12 12
     $args = func_get_args();
13 13
 
14
-    $every = function (\Closure $fn, array $ls) {
14
+    $every = function(\Closure $fn, array $ls) {
15 15
         $params = (new \ReflectionFunction($fn))->getNumberOfRequiredParameters();
16 16
 
17
-        return array_map(function ($val) use ($fn, $ls, $params) {
17
+        return array_map(function($val) use ($fn, $ls, $params) {
18 18
             $args = [$val];
19 19
 
20 20
             if ($params > 1) {
Please login to merge, or discard this patch.