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 — develop (#371)
by Dane
02:54
created
app/Exceptions/Handler.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -2,9 +2,7 @@
 block discarded – undo
2 2
 
3 3
 namespace Pterodactyl\Exceptions;
4 4
 
5
-use Log;
6 5
 use Exception;
7
-use DisplayException;
8 6
 use Illuminate\Auth\AuthenticationException;
9 7
 use Illuminate\Foundation\Exceptions\Handler as ExceptionHandler;
10 8
 
Please login to merge, or discard this patch.
app/Http/Controllers/API/User/ServerController.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -27,7 +27,6 @@
 block discarded – undo
27 27
 use Fractal;
28 28
 use Illuminate\Http\Request;
29 29
 use Pterodactyl\Models\Server;
30
-use GuzzleHttp\Exception\ConnectException;
31 30
 use Pterodactyl\Http\Controllers\Controller;
32 31
 use Pterodactyl\Transformers\User\ServerTransformer;
33 32
 use Pterodactyl\Repositories\Daemon\PowerRepository;
Please login to merge, or discard this patch.
app/Http/Middleware/HMACAuthorization.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -28,13 +28,11 @@
 block discarded – undo
28 28
 use Crypt;
29 29
 use Config;
30 30
 use Closure;
31
-use Response;
32 31
 use Debugbar;
33 32
 use IPTools\IP;
34 33
 use IPTools\Range;
35 34
 use Illuminate\Http\Request;
36 35
 use Pterodactyl\Models\APIKey;
37
-use Pterodactyl\Models\APIPermission;
38 36
 use Symfony\Component\HttpKernel\Exception\BadRequestHttpException; // 400
39 37
 use Symfony\Component\HttpKernel\Exception\AccessDeniedHttpException; // 403
40 38
 
Please login to merge, or discard this patch.