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
Pull Request — master (#43)
by
unknown
02:09
created
src/CommandBus.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -42,7 +42,7 @@
 block discarded – undo
42 42
      */
43 43
     public function handle($command): CancellablePromiseInterface
44 44
     {
45
-        return futurePromise($this->loop, $command)->then(function ($command) {
45
+        return futurePromise($this->loop, $command)->then(function($command) {
46 46
             return resolve($this->commandBus->handle($command));
47 47
         });
48 48
     }
Please login to merge, or discard this patch.
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.