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 ( 535901...4011ae )
by Dane
02:56
created
app/Repositories/DatabaseRepository.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -26,7 +26,6 @@
 block discarded – undo
26 26
 
27 27
 use DB;
28 28
 use Crypt;
29
-use Config;
30 29
 use Validator;
31 30
 use Pterodactyl\Models\Server;
32 31
 use Pterodactyl\Models\Database;
Please login to merge, or discard this patch.
app/Http/Controllers/Auth/LoginController.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -26,13 +26,11 @@
 block discarded – undo
26 26
 namespace Pterodactyl\Http\Controllers\Auth;
27 27
 
28 28
 use Auth;
29
-use Alert;
30 29
 use Cache;
31 30
 use Crypt;
32 31
 use Illuminate\Http\Request;
33 32
 use Pterodactyl\Models\User;
34 33
 use PragmaRX\Google2FA\Google2FA;
35
-use Pterodactyl\Events\Auth\FailedLogin;
36 34
 use Pterodactyl\Http\Controllers\Controller;
37 35
 use Illuminate\Foundation\Auth\AuthenticatesUsers;
38 36
 
Please login to merge, or discard this patch.
app/Models/Server.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -150,7 +150,7 @@  discard block
 block discarded – undo
150 150
     /**
151 151
      * Returns non-administrative headers for accessing a server on the daemon.
152 152
      *
153
-     * @param  Pterodactyl\Models\User|null  $user
153
+     * @param  null|User  $user
154 154
      * @return array
155 155
      */
156 156
     public function guzzleHeaders(User $user = null)
@@ -170,7 +170,7 @@  discard block
 block discarded – undo
170 170
     /**
171 171
      * Return an instance of the Guzzle client for this specific server using defined access token.
172 172
      *
173
-     * @param  Pterodactyl\Models\User|null  $user
173
+     * @param  null|User  $user
174 174
      * @return \GuzzleHttp\Client
175 175
      */
176 176
     public function guzzleClient(User $user = null)
Please login to merge, or discard this patch.
app/Jobs/SendScheduledTask.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -27,8 +27,6 @@
 block discarded – undo
27 27
 use Cron;
28 28
 use Carbon;
29 29
 use Pterodactyl\Models\Task;
30
-use Pterodactyl\Models\User;
31
-use Pterodactyl\Models\Server;
32 30
 use Pterodactyl\Models\TaskLog;
33 31
 use Illuminate\Queue\SerializesModels;
34 32
 use Illuminate\Queue\InteractsWithQueue;
Please login to merge, or discard this patch.
app/Repositories/Daemon/PowerRepository.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -62,7 +62,7 @@
 block discarded – undo
62 62
      * Sends a power option to the daemon.
63 63
      *
64 64
      * @param  string                    $action
65
-     * @return string
65
+     * @return \Psr\Http\Message\StreamInterface
66 66
      *
67 67
      * @throws \GuzzleHttp\Exception\RequestException
68 68
      * @throws \Pterodactyl\Exceptions\DisplayException
Please login to merge, or discard this patch.