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 ( 50397b...f20f29 )
by Brent
01:05
created
src/Pool.php 1 patch
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -4,10 +4,10 @@
 block discarded – undo
4 4
 
5 5
 use ArrayAccess;
6 6
 use InvalidArgumentException;
7
-use Spatie\Async\Process\Runnable;
8
-use Spatie\Async\Runtime\ParentRuntime;
9 7
 use Spatie\Async\Process\ParallelProcess;
8
+use Spatie\Async\Process\Runnable;
10 9
 use Spatie\Async\Process\SynchronousProcess;
10
+use Spatie\Async\Runtime\ParentRuntime;
11 11
 
12 12
 class Pool implements ArrayAccess
13 13
 {
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
@@ -8,9 +8,9 @@
 block discarded – undo
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.
src/Process/ProcessCallbacks.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,8 +2,8 @@
 block discarded – undo
2 2
 
3 3
 namespace Spatie\Async\Process;
4 4
 
5
-use Throwable;
6 5
 use ReflectionFunction;
6
+use Throwable;
7 7
 
8 8
 trait ProcessCallbacks
9 9
 {
Please login to merge, or discard this patch.