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 ( b603db...3d25c3 )
by Brent
01:26
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, -2 removed lines patch added patch discarded remove patch
@@ -2,9 +2,9 @@
 block discarded – undo
2 2
 
3 3
 namespace Spatie\Async;
4 4
 
5
-use Throwable;
6
-use Symfony\Component\Process\Process;
7 5
 use Spatie\Async\Output\SerializableException;
6
+use Symfony\Component\Process\Process;
7
+use Throwable;
8 8
 
9 9
 class ParallelProcess
10 10
 {
Please login to merge, or discard this patch.
src/Runtime/ParentRuntime.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -3,8 +3,8 @@
 block discarded – undo
3 3
 namespace Spatie\Async\Runtime;
4 4
 
5 5
 use Closure;
6
-use Spatie\Async\Task;
7 6
 use Spatie\Async\ParallelProcess;
7
+use Spatie\Async\Task;
8 8
 use function Opis\Closure\serialize;
9 9
 use Opis\Closure\SerializableClosure;
10 10
 use function Opis\Closure\unserialize;
Please login to merge, or discard this patch.