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.
Passed
Push — master ( 3e58ca...8aa70a )
by Cees-Jan
09:28 queued 15s
created
src/CallableThrowableLogger.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@  discard block
 block discarded – undo
15 15
 
16 16
     public static function create(LoggerInterface $logger, string $level = 'error', string $message = self::MESSAGE): callable
17 17
     {
18
-        return static function (Throwable $throwable) use ($logger, $level, $message): void {
18
+        return static function(Throwable $throwable) use ($logger, $level, $message): void {
19 19
             /**
20 20
              * Ignoring this because we're just passing it a long
21 21
              *
@@ -30,7 +30,7 @@  discard block
 block discarded – undo
30 30
                     $throwable->getFile(),
31 31
                     $throwable->getLine()
32 32
                 ),
33
-                ['exception' => $throwable]
33
+                [ 'exception' => $throwable ]
34 34
             );
35 35
         };
36 36
     }
Please login to merge, or discard this patch.