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:20
created
src/ParallelProcess.php 2 patches
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -77,6 +77,9 @@  discard block
 block discarded – undo
77 77
         return $this->process->isTerminated();
78 78
     }
79 79
 
80
+    /**
81
+     * @return callable
82
+     */
80 83
     public function output()
81 84
     {
82 85
         if (! $this->output) {
@@ -92,6 +95,9 @@  discard block
 block discarded – undo
92 95
         return $this->output;
93 96
     }
94 97
 
98
+    /**
99
+     * @return callable
100
+     */
95 101
     public function errorOutput()
96 102
     {
97 103
         if (! $this->errorOutput) {
Please login to merge, or discard this patch.
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.