Completed
Push — master ( 347590...e0f246 )
by Sérgio
02:45
created
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 ($prop, $ls, $default = false) {
14
+    $prop = function($prop, $ls, $default = false) {
15 15
         $ls = (array) $ls;
16 16
         
17 17
         if (has($prop, $ls)) {
Please login to merge, or discard this patch.
src/ifelse.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -11,8 +11,8 @@
 block discarded – undo
11 11
 {
12 12
     $args = func_get_args();
13 13
 
14
-    $ifelse = function ($condition, $ontrue, $onfalse) {
15
-        return function ($args) use ($condition, $ontrue, $onfalse) {
14
+    $ifelse = function($condition, $ontrue, $onfalse) {
15
+        return function($args) use ($condition, $ontrue, $onfalse) {
16 16
             if (call_user_func($condition, $args)) {
17 17
                 return call_user_func($ontrue, $args);
18 18
             }
Please login to merge, or discard this patch.