Completed
Push — master ( b03e32...44190a )
by Sérgio
03:19
created
src/each.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -11,9 +11,9 @@
 block discarded – undo
11 11
 {
12 12
     $args = func_get_args();
13 13
 
14
-    $each = function (\Closure $fn, $ls) {
14
+    $each = function(\Closure $fn, $ls) {
15 15
         if ($ls instanceof \Iterator) {
16
-            iterator_apply($ls, function () use ($fn, $ls) {
16
+            iterator_apply($ls, function() use ($fn, $ls) {
17 17
                 $args = [
18 18
                     $ls->current(),
19 19
                     $ls->key()
Please login to merge, or discard this patch.
src/not.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
-    $not = function ($x) {
14
+    $not = function($x) {
15 15
         return !$x;
16 16
     };
17 17
 
Please login to merge, or discard this patch.
src/equals.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
-    $equals = function ($x, $y) {
14
+    $equals = function($x, $y) {
15 15
         return $x === $y;
16 16
     };
17 17
 
Please login to merge, or discard this patch.