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