Completed
Push — master ( b9bc84...771d11 )
by Sérgio
03:45
created
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 $ls) {
14
+    $take = function($n, array $ls) {
15 15
         return array_slice($ls, 0, $n);
16 16
     };
17 17
 
Please login to merge, or discard this patch.
src/drop.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
-    $drop = function ($n, array $ls) {
14
+    $drop = function($n, array $ls) {
15 15
         return array_slice($ls, $n);
16 16
     };
17 17
 
Please login to merge, or discard this patch.