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 ( 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.