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 ( bf3f88...6de0f4 )
by Brent
14s queued 11s
created
src/HasEnums.php 1 patch
Unused Use Statements   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -2,12 +2,12 @@
 block discarded – undo
2 2
 
3 3
 namespace Spatie\Enum\Laravel;
4 4
 
5
-use Spatie\Enum\Enumerable;
6
-use InvalidArgumentException;
7
-use Illuminate\Database\Eloquent\Model;
8 5
 use Illuminate\Database\Eloquent\Builder;
9
-use Spatie\Enum\Laravel\Exceptions\NoSuchEnumField;
6
+use Illuminate\Database\Eloquent\Model;
7
+use InvalidArgumentException;
8
+use Spatie\Enum\Enumerable;
10 9
 use Spatie\Enum\Laravel\Exceptions\InvalidEnumError;
10
+use Spatie\Enum\Laravel\Exceptions\NoSuchEnumField;
11 11
 
12 12
 /**
13 13
  * @mixin Model
Please login to merge, or discard this patch.
src/Commands/MakeEnum.php 1 patch
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -2,10 +2,10 @@
 block discarded – undo
2 2
 
3 3
 namespace Spatie\Enum\Laravel\Commands;
4 4
 
5
-use Illuminate\Support\Str;
6 5
 use Illuminate\Console\GeneratorCommand;
7
-use Symfony\Component\Console\Input\InputOption;
6
+use Illuminate\Support\Str;
8 7
 use Symfony\Component\Console\Input\InputArgument;
8
+use Symfony\Component\Console\Input\InputOption;
9 9
 
10 10
 class MakeEnum extends GeneratorCommand
11 11
 {
Please login to merge, or discard this patch.