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 ( 0312c9...c98d1d )
by Dane
02:49
created
app/Http/Controllers/API/ServerController.php 2 patches
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -170,7 +170,7 @@  discard block
 block discarded – undo
170 170
      *
171 171
      * @param  Request  $request
172 172
      * @param  int      $id
173
-     * @return void
173
+     * @return \Dingo\Api\Http\Response
174 174
      */
175 175
     public function suspend(Request $request, $id)
176 176
     {
@@ -191,7 +191,7 @@  discard block
 block discarded – undo
191 191
      *
192 192
      * @param  Request  $request
193 193
      * @param  int      $id
194
-     * @return void
194
+     * @return \Dingo\Api\Http\Response
195 195
      */
196 196
     public function unsuspend(Request $request, $id)
197 197
     {
@@ -213,7 +213,7 @@  discard block
 block discarded – undo
213 213
      * @param  Request  $request
214 214
      * @param  int      $id
215 215
      * @param  string|null $force
216
-     * @return void
216
+     * @return \Dingo\Api\Http\Response
217 217
      */
218 218
     public function delete(Request $request, $id, $force = null)
219 219
     {
Please login to merge, or discard this patch.
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -31,7 +31,6 @@
 block discarded – undo
31 31
 use Pterodactyl\Exceptions\DisplayException;
32 32
 use Pterodactyl\Repositories\ServerRepository;
33 33
 use Pterodactyl\Exceptions\DisplayValidationException;
34
-use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;
35 34
 use Symfony\Component\HttpKernel\Exception\BadRequestHttpException;
36 35
 use Symfony\Component\HttpKernel\Exception\ServiceUnavailableHttpException;
37 36
 
Please login to merge, or discard this patch.
app/Http/Controllers/API/ServiceController.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 Illuminate\Http\Request;
28 28
 use Pterodactyl\Models\Service;
29
-use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;
30 29
 
31 30
 class ServiceController extends BaseController
32 31
 {
Please login to merge, or discard this patch.
app/Http/Controllers/API/UserController.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -133,7 +133,7 @@
 block discarded – undo
133 133
      *
134 134
      * @param  Request  $request
135 135
      * @param  int      $id
136
-     * @return void
136
+     * @return \Dingo\Api\Http\Response
137 137
      */
138 138
     public function delete(Request $request, $id)
139 139
     {
Please login to merge, or discard this patch.
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -30,7 +30,6 @@
 block discarded – undo
30 30
 use Pterodactyl\Exceptions\DisplayException;
31 31
 use Pterodactyl\Repositories\UserRepository;
32 32
 use Pterodactyl\Exceptions\DisplayValidationException;
33
-use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;
34 33
 use Symfony\Component\HttpKernel\Exception\ServiceUnavailableHttpException;
35 34
 
36 35
 class UserController extends BaseController
Please login to merge, or discard this patch.
app/Exceptions/DisplayException.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@
 block discarded – undo
32 32
      * Exception constructor.
33 33
      *
34 34
      * @param  string  $message
35
-     * @param  mixed   $log
35
+     * @param  \GuzzleHttp\Exception\TransferException   $log
36 36
      * @return void
37 37
      */
38 38
     public function __construct($message, $log = null)
Please login to merge, or discard this patch.
app/Http/Controllers/Admin/OptionController.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -56,7 +56,7 @@
 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 create(Request $request)
62 62
     {
Please login to merge, or discard this patch.
app/Http/Controllers/Admin/PackController.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -84,7 +84,7 @@
 block discarded – undo
84 84
      * Handle create pack request and route user to location.
85 85
      *
86 86
      * @param  \Illuminate\Http\Request  $request
87
-     * @return \Illuminate\View\View
87
+     * @return \Illuminate\Http\RedirectResponse
88 88
      */
89 89
     public function create(Request $request)
90 90
     {
Please login to merge, or discard this patch.
app/Http/Controllers/Admin/ServersController.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -86,7 +86,7 @@
 block discarded – undo
86 86
      * Create server controller method.
87 87
      *
88 88
      * @param  \Illuminate\Http\Request  $request
89
-     * @return \Illuminate\Response\RedirectResponse
89
+     * @return \Illuminate\Http\RedirectResponse
90 90
      */
91 91
     public function create(Request $request)
92 92
     {
Please login to merge, or discard this patch.
app/Http/Controllers/Server/ServerController.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -169,7 +169,7 @@
 block discarded – undo
169 169
      * @param  \Illuminate\Http\Request  $request
170 170
      * @param  string                    $uuid
171 171
      * @param  string                    $file
172
-     * @return \Illuminate\View\View
172
+     * @return \Illuminate\Http\RedirectResponse
173 173
      */
174 174
     public function getDownloadFile(Request $request, $uuid, $file)
175 175
     {
Please login to merge, or discard this patch.
app/Notifications/SendPasswordReset.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.