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 — develop ( 14946e...fa04bb )
by Dane
04:11 queued 01:16
created
app/Notifications/ServerCreated.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@
 block discarded – undo
28 28
      * Get the notification's delivery channels.
29 29
      *
30 30
      * @param  mixed  $notifiable
31
-     * @return array
31
+     * @return string[]
32 32
      */
33 33
     public function via($notifiable)
34 34
     {
Please login to merge, or discard this patch.
app/Http/Middleware/APISecretToken.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -31,7 +31,6 @@
 block discarded – undo
31 31
 use IPTools\Range;
32 32
 use Dingo\Api\Routing\Route;
33 33
 use Illuminate\Http\Request;
34
-use Pterodactyl\Models\User;
35 34
 use Pterodactyl\Models\APIKey;
36 35
 use Pterodactyl\Models\APIPermission;
37 36
 use Pterodactyl\Services\APILogService;
Please login to merge, or discard this patch.
app/Exceptions/Handler.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -2,7 +2,6 @@
 block discarded – undo
2 2
 
3 3
 namespace Pterodactyl\Exceptions;
4 4
 
5
-use Log;
6 5
 use Exception;
7 6
 use DisplayException;
8 7
 use Illuminate\Auth\AuthenticationException;
Please login to merge, or discard this patch.
app/Repositories/Daemon/FileRepository.php 2 patches
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -25,7 +25,6 @@
 block discarded – undo
25 25
 namespace Pterodactyl\Repositories\Daemon;
26 26
 
27 27
 use Exception;
28
-use GuzzleHttp\Client;
29 28
 use Pterodactyl\Models\Server;
30 29
 use Pterodactyl\Exceptions\DisplayException;
31 30
 use Pterodactyl\Repositories\HelperRepository;
Please login to merge, or discard this patch.
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -43,7 +43,7 @@
 block discarded – undo
43 43
      * Constructor.
44 44
      *
45 45
      * @param  string  $uuid
46
-     * @return void
46
+     * @return string
47 47
      */
48 48
     public function __construct($uuid)
49 49
     {
Please login to merge, or discard this patch.
app/Notifications/AccountCreated.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@
 block discarded – undo
28 28
      * Get the notification's delivery channels.
29 29
      *
30 30
      * @param  mixed  $notifiable
31
-     * @return array
31
+     * @return string[]
32 32
      */
33 33
     public function via($notifiable)
34 34
     {
Please login to merge, or discard this patch.
app/Notifications/AddedToServer.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@
 block discarded – undo
28 28
      * Get the notification's delivery channels.
29 29
      *
30 30
      * @param  mixed  $notifiable
31
-     * @return array
31
+     * @return string[]
32 32
      */
33 33
     public function via($notifiable)
34 34
     {
Please login to merge, or discard this patch.
app/Notifications/RemovedFromServer.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@
 block discarded – undo
28 28
      * Get the notification's delivery channels.
29 29
      *
30 30
      * @param  mixed  $notifiable
31
-     * @return array
31
+     * @return string[]
32 32
      */
33 33
     public function via($notifiable)
34 34
     {
Please login to merge, or discard this patch.
app/Repositories/PackRepository.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -25,7 +25,6 @@
 block discarded – undo
25 25
 namespace Pterodactyl\Repositories;
26 26
 
27 27
 use DB;
28
-use Uuid;
29 28
 use Storage;
30 29
 use Validator;
31 30
 use Pterodactyl\Models\Pack;
Please login to merge, or discard this patch.
app/Console/Commands/RebuildServer.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -24,7 +24,6 @@
 block discarded – undo
24 24
 
25 25
 namespace Pterodactyl\Console\Commands;
26 26
 
27
-use Pterodactyl\Models\Node;
28 27
 use Pterodactyl\Models\Server;
29 28
 use Illuminate\Console\Command;
30 29
 
Please login to merge, or discard this patch.