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 (#5)
by Brent
01:38
created
src/ParallelProcess.php 2 patches
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -87,6 +87,9 @@
 block discarded – undo
87 87
         return $this->process->isTerminated();
88 88
     }
89 89
 
90
+    /**
91
+     * @return callable
92
+     */
90 93
     public function getOutput()
91 94
     {
92 95
         if (! $this->output) {
Please login to merge, or discard this patch.
Unused Use Statements   +2 added lines, -3 removed lines patch added patch discarded remove patch
@@ -2,10 +2,9 @@
 block discarded – undo
2 2
 
3 3
 namespace Spatie\Async;
4 4
 
5
-use Error;
6
-use Throwable;
7
-use Symfony\Component\Process\Process;
8 5
 use Spatie\Async\Output\SerializableException;
6
+use Symfony\Component\Process\Process;
7
+use Throwable;
9 8
 
10 9
 class ParallelProcess
11 10
 {
Please login to merge, or discard this patch.