GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
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.