Completed
Push — master ( 950d78...402375 )
by Alexander
04:06
created
YaLinqo/Utils.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -40,8 +40,8 @@  discard block
 block discarded – undo
40 40
     public static function init()
41 41
     {
42 42
         self::$lambdaCache = [
43
-            '$v' => [ 'v,k' => Functions::$value ],
44
-            '$k' => [ 'v,k' => Functions::$key ],
43
+            '$v' => ['v,k' => Functions::$value],
44
+            '$k' => ['v,k' => Functions::$key],
45 45
         ];
46 46
     }
47 47
 
@@ -146,7 +146,7 @@  discard block
 block discarded – undo
146 146
                 $code = substr($closure, $posArrow + 3);
147 147
             }
148 148
             else {
149
-                $args = '$' . str_replace(',', '=null,$', $closureArgs) . '=null';
149
+                $args = '$'.str_replace(',', '=null,$', $closureArgs).'=null';
150 150
                 $code = $closure;
151 151
             }
152 152
             $code = trim($code, " \r\n\t");
Please login to merge, or discard this patch.