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 ( c16181...58b33a )
by Cees-Jan
09:23 queued 14s
created
src/Serialize.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@  discard block
 block discarded – undo
25 25
          * @psalm-suppress TooManyTemplateParams
26 26
          * @psalm-suppress MissingClosureParamType
27 27
          */
28
-        return $this->cache->get($key, $default)->then(static function ($result) use ($default): mixed {
28
+        return $this->cache->get($key, $default)->then(static function($result) use ($default): mixed {
29 29
             if ($result === null || $result === $default) {
30 30
                 return $default;
31 31
             }
@@ -70,7 +70,7 @@  discard block
 block discarded – undo
70 70
          * @psalm-suppress TooManyTemplateParams
71 71
          * @psalm-suppress MissingClosureParamType
72 72
          */
73
-        return $this->cache->getMultiple($keys, $default)->then(static function ($results) use ($default) {
73
+        return $this->cache->getMultiple($keys, $default)->then(static function($results) use ($default) {
74 74
             /**
75 75
              * @psalm-suppress MixedAssignment
76 76
              */
Please login to merge, or discard this patch.