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 ( d8ec40...63f450 )
by Cees-Jan
22:34 queued 21:00
created
src/Mapping.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -11,6 +11,9 @@
 block discarded – undo
11 11
  */
12 12
 final class Mapping
13 13
 {
14
+    /**
15
+     * @param \Generator $directories
16
+     */
14 17
     public static function resolve(iterable $directories, ?string $cacheFile): iterable
15 18
     {
16 19
         if ($cacheFile !== null && \file_exists($cacheFile)) {
Please login to merge, or discard this patch.
src/Cache.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -14,6 +14,6 @@
 block discarded – undo
14 14
 
15 15
     public static function write(string $cacheFile, array $mapping): bool
16 16
     {
17
-        return (bool)\file_put_contents($cacheFile, \json_encode($mapping));
17
+        return (bool) \file_put_contents($cacheFile, \json_encode($mapping));
18 18
     }
19 19
 }
Please login to merge, or discard this patch.