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 ( ae6b0f...6dc1c1 )
by Dane
02:55
created
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.
app/Http/Controllers/Admin/OptionController.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -56,7 +56,7 @@  discard block
 block discarded – undo
56 56
      * Handles POST request to create a new option.
57 57
      *
58 58
      * @param  \Illuminate\Http\Request  $request
59
-     * @return \Illuminate\Response\RedirectResponse
59
+     * @return \Illuminate\Http\RedirectResponse
60 60
      */
61 61
     public function store(Request $request)
62 62
     {
@@ -226,7 +226,7 @@  discard block
 block discarded – undo
226 226
      *
227 227
      * @param  Request $request
228 228
      * @param  int     $id
229
-     * @return \Illuminate\Response\RedirectResponse
229
+     * @return \Illuminate\Http\RedirectResponse
230 230
      */
231 231
     public function updateScripts(Request $request, $id)
232 232
     {
Please login to merge, or discard this patch.
app/Repositories/UserRepository.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,6 @@
 block discarded – undo
28 28
 use DB;
29 29
 use Auth;
30 30
 use Hash;
31
-use Carbon;
32 31
 use Settings;
33 32
 use Validator;
34 33
 use Pterodactyl\Models;
Please login to merge, or discard this patch.
app/Models/User.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -205,7 +205,7 @@
 block discarded – undo
205 205
      * Change the access level for a given call to `access()` on the user.
206 206
      *
207 207
      * @param  string  $level can be all, admin, subuser, owner
208
-     * @return void
208
+     * @return User
209 209
      */
210 210
     public function setAccessLevel($level = 'all')
211 211
     {
Please login to merge, or discard this patch.