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 ( 0682ea...fd82b9 )
by Freek
10:59 queued 09:07
created
src/CheckLinksCommand.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\LinkChecker;
4 4
 
5 5
 use Exception;
6
-use Spatie\Crawler\Crawler;
7 6
 use Illuminate\Console\Command;
8
-use Spatie\Crawler\CrawlProfile;
9 7
 use Spatie\Crawler\CrawlObserver;
8
+use Spatie\Crawler\CrawlProfile;
9
+use Spatie\Crawler\Crawler;
10 10
 
11 11
 class CheckLinksCommand extends Command
12 12
 {
Please login to merge, or discard this patch.
src/Reporters/MailBrokenLinks.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\LinkChecker\Reporters;
4 4
 
5
-use Psr\Http\Message\UriInterface;
5
+use GuzzleHttp\Exception\RequestException;
6 6
 use Illuminate\Contracts\Mail\Mailer;
7 7
 use Psr\Http\Message\ResponseInterface;
8
-use GuzzleHttp\Exception\RequestException;
8
+use Psr\Http\Message\UriInterface;
9 9
 
10 10
 class MailBrokenLinks extends BaseReporter
11 11
 {
Please login to merge, or discard this patch.