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 (#26)
by Brent
07:02 queued 02:31
created
src/Pool.php 1 patch
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -3,10 +3,10 @@
 block discarded – undo
3 3
 namespace Spatie\Async;
4 4
 
5 5
 use ArrayAccess;
6
-use Spatie\Async\Process\Runnable;
7
-use Spatie\Async\Runtime\ParentRuntime;
8 6
 use Spatie\Async\Process\ParallelProcess;
7
+use Spatie\Async\Process\Runnable;
9 8
 use Spatie\Async\Process\SynchronousProcess;
9
+use Spatie\Async\Runtime\ParentRuntime;
10 10
 
11 11
 class Pool implements ArrayAccess
12 12
 {
Please login to merge, or discard this patch.
src/Runtime/ParentRuntime.php 1 patch
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -3,14 +3,14 @@
 block discarded – undo
3 3
 namespace Spatie\Async\Runtime;
4 4
 
5 5
 use Spatie\Async\Pool;
6
-use Spatie\Async\Task;
7 6
 use Spatie\Async\Process\Runnable;
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;
11
-use Symfony\Component\Process\Process;
12 11
 use Spatie\Async\Process\ParallelProcess;
13 12
 use Spatie\Async\Process\SynchronousProcess;
13
+use Symfony\Component\Process\Process;
14 14
 
15 15
 class ParentRuntime
16 16
 {
Please login to merge, or discard this patch.