Completed
Push — master ( ac1a93...a3629c )
by Sérgio
07:31
created
src/has.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
-    $has = function ($x, $xs) {
14
+    $has = function($x, $xs) {
15 15
         return array_key_exists($x, (array) $xs);
16 16
     };
17 17
 
Please login to merge, or discard this patch.
src/prop.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
-    $prop = function ($x, $xs) {
14
+    $prop = function($x, $xs) {
15 15
         $xs = (array) $xs;
16 16
 
17 17
         if (array_key_exists($x, $xs)) {
Please login to merge, or discard this patch.
src/get.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@
 block discarded – undo
15 15
 {
16 16
     $args = func_get_args();
17 17
 
18
-    $get = function ($xs, $x, $notfound = false) {
18
+    $get = function($xs, $x, $notfound = false) {
19 19
         $xs = (array) $xs;
20 20
 
21 21
         if (isset($xs[$x])) {
Please login to merge, or discard this patch.
src/getin.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
     $args = func_get_args();
19 19
 
20
-    $getin = function ($xs, $ks, $notfound = false) {
20
+    $getin = function($xs, $ks, $notfound = false) {
21 21
         $xs = (array) $xs;
22 22
         $ks = (array) $ks;
23 23
 
Please login to merge, or discard this patch.