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 ( 53fb33...90de41 )
by Cees-Jan
24s
created
src/Mapping.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -9,6 +9,9 @@
 block discarded – undo
9 9
  */
10 10
 final class Mapping
11 11
 {
12
+    /**
13
+     * @param \Generator $directories
14
+     */
12 15
     public static function resolve(iterable $directories, ?string $cacheFile): iterable
13 16
     {
14 17
         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
@@ -24,7 +24,7 @@
 block discarded – undo
24 24
 
25 25
     public static function write(string $cacheFile, array $mapping): bool
26 26
     {
27
-        return (bool)file_put_contents($cacheFile, json_encode(array_map(function (Handler $handler) {
27
+        return (bool) file_put_contents($cacheFile, json_encode(array_map(function(Handler $handler) {
28 28
             return [
29 29
                 $handler->getHandler(),
30 30
             ];
Please login to merge, or discard this patch.