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 Freek
01:21
created
src/ParallelProcess.php 2 patches
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -3,9 +3,9 @@
 block discarded – undo
3 3
 namespace Spatie\Async;
4 4
 
5 5
 use Error;
6
-use Throwable;
7
-use Symfony\Component\Process\Process;
8 6
 use Spatie\Async\Output\SerializableException;
7
+use Symfony\Component\Process\Process;
8
+use Throwable;
9 9
 
10 10
 class ParallelProcess
11 11
 {
Please login to merge, or discard this patch.
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -87,6 +87,9 @@  discard block
 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) {
@@ -102,6 +105,9 @@  discard block
 block discarded – undo
102 105
         return $this->output;
103 106
     }
104 107
 
108
+    /**
109
+     * @return callable
110
+     */
105 111
     public function getErrorOutput()
106 112
     {
107 113
         if (! $this->errorOutput) {
Please login to merge, or discard this patch.