Completed
Push — master ( 44190a...b03e32 )
by Sérgio
02:31
created
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 ($a, $b) {
14
+    $equals = function($a, $b) {
15 15
         return $a === $b;
16 16
     };
17 17
 
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
@@ -17,7 +17,7 @@
 block discarded – undo
17 17
      *
18 18
      * @return bool
19 19
      */
20
-    $not = function ($val) {
20
+    $not = function($val) {
21 21
         return !$val;
22 22
     };
23 23
 
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.