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 ( 05d2a6...198a02 )
by Dane
03:13
created
app/Http/Controllers/Admin/DatabaseController.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -70,7 +70,7 @@  discard block
 block discarded – undo
70 70
      * Handle post request to create database host.
71 71
      *
72 72
      * @param  Request $request
73
-     * @return \Illuminate\Response\RedirectResponse
73
+     * @return \Illuminate\Http\RedirectResponse
74 74
      */
75 75
     public function create(Request $request)
76 76
     {
@@ -101,7 +101,7 @@  discard block
 block discarded – undo
101 101
      *
102 102
      * @param  Request $request
103 103
      * @param  int     $id
104
-     * @return \Illuminate\Response\RedirectResponse
104
+     * @return \Illuminate\Http\RedirectResponse
105 105
      */
106 106
     public function update(Request $request, $id)
107 107
     {
Please login to merge, or discard this patch.
app/Repositories/DatabaseRepository.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -192,7 +192,7 @@
 block discarded – undo
192 192
     /**
193 193
      * Deletes a database host from the system if it has no associated databases.
194 194
      *
195
-     * @param  int $server
195
+     * @param integer $id
196 196
      * @return void
197 197
      *
198 198
      * @throws \Pterodactyl\Exceptions\DisplayException
Please login to merge, or discard this patch.