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
Pull Request — develop (#334)
by Dane
05:31 queued 02:47
created
app/Http/Controllers/Admin/NodesController.php 1 patch
Doc Comments   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -76,7 +76,7 @@  discard block
 block discarded – undo
76 76
      * Post controller to create a new node on the system.
77 77
      *
78 78
      * @param  Request $request
79
-     * @return \Illuminate\Response\RedirectResponse
79
+     * @return \Illuminate\Http\RedirectResponse
80 80
      */
81 81
     public function create(Request $request)
82 82
     {
@@ -205,7 +205,6 @@  discard block
 block discarded – undo
205 205
      * Updates settings for a node.
206 206
      *
207 207
      * @param  Request $request
208
-     * @param  int $node
209 208
      * @return \Illuminate\Http\RedirectResponse
210 209
      */
211 210
     public function updateSettings(Request $request, $id)
Please login to merge, or discard this patch.
app/Http/Controllers/Admin/ServersController.php 1 patch
Doc Comments   +14 added lines, -14 removed lines patch added patch discarded remove patch
@@ -86,7 +86,7 @@  discard block
 block discarded – undo
86 86
      * Create server controller method.
87 87
      *
88 88
      * @param  Request $request
89
-     * @return \Illuminate\Response\RedirectResponse
89
+     * @return \Illuminate\Http\RedirectResponse
90 90
      */
91 91
     public function create(Request $request)
92 92
     {
@@ -246,7 +246,7 @@  discard block
 block discarded – undo
246 246
      *
247 247
      * @param  Request $request
248 248
      * @param  int     $id
249
-     * @return \Illuminate\Response\RedirectResponse
249
+     * @return \Illuminate\Http\RedirectResponse
250 250
      */
251 251
     public function setDetails(Request $request, $id)
252 252
     {
@@ -274,7 +274,7 @@  discard block
 block discarded – undo
274 274
      *
275 275
      * @param  Request $request
276 276
      * @param  int     $id
277
-     * @return \Illuminate\Response\RedirectResponse
277
+     * @return \Illuminate\Http\RedirectResponse
278 278
      */
279 279
     public function setContainer(Request $request, $id)
280 280
     {
@@ -301,7 +301,7 @@  discard block
 block discarded – undo
301 301
      *
302 302
      * @param  Request $request
303 303
      * @param  int     $id
304
-     * @return \Illuminate\Response\RedirectResponse
304
+     * @return \Illuminate\Http\RedirectResponse
305 305
      */
306 306
     public function toggleInstall(Request $request, $id)
307 307
     {
@@ -325,7 +325,7 @@  discard block
 block discarded – undo
325 325
      *
326 326
      * @param  Request $request
327 327
      * @param  int     $id
328
-     * @return \Illuminate\Response\RedirectResponse
328
+     * @return \Illuminate\Http\RedirectResponse
329 329
      */
330 330
     public function rebuildContainer(Request $request, $id)
331 331
     {
@@ -351,7 +351,7 @@  discard block
 block discarded – undo
351 351
      *
352 352
      * @param  Request $request
353 353
      * @param  int     $id
354
-     * @return \Illuminate\Response\RedirectResponse
354
+     * @return \Illuminate\Http\RedirectResponse
355 355
      */
356 356
     public function manageSuspension(Request $request, $id)
357 357
     {
@@ -383,7 +383,7 @@  discard block
 block discarded – undo
383 383
      *
384 384
      * @param  Request $request
385 385
      * @param  int     $id
386
-     * @return \Illuminate\Response\RedirectResponse
386
+     * @return \Illuminate\Http\RedirectResponse
387 387
      */
388 388
     public function updateBuild(Request $request, $id)
389 389
     {
@@ -413,7 +413,7 @@  discard block
 block discarded – undo
413 413
      *
414 414
      * @param  Request $request
415 415
      * @param  int     $id
416
-     * @return \Illuminate\Response\RedirectResponse
416
+     * @return \Illuminate\Http\RedirectResponse
417 417
      */
418 418
     public function delete(Request $request, $id)
419 419
     {
@@ -437,7 +437,7 @@  discard block
 block discarded – undo
437 437
      *
438 438
      * @param  Request $request
439 439
      * @param  int     $id
440
-     * @return \Illuminate\Response\RedirectResponse
440
+     * @return \Illuminate\Http\RedirectResponse
441 441
      */
442 442
     public function cancelDeletion(Request $request, $id)
443 443
     {
@@ -454,7 +454,7 @@  discard block
 block discarded – undo
454 454
      *
455 455
      * @param  Request $request
456 456
      * @param  int     $id
457
-     * @return \Illuminate\Response\RedirectResponse
457
+     * @return \Illuminate\Http\RedirectResponse
458 458
      */
459 459
     public function continueDeletion(Request $request, $id, $method)
460 460
     {
@@ -483,7 +483,7 @@  discard block
 block discarded – undo
483 483
      *
484 484
      * @param  Request $request
485 485
      * @param  int     $id
486
-     * @return \Illuminate\Response\RedirectResponse
486
+     * @return \Illuminate\Http\RedirectResponse
487 487
      */
488 488
     public function saveStartup(Request $request, $id)
489 489
     {
@@ -510,7 +510,7 @@  discard block
 block discarded – undo
510 510
      * Creates a new database assigned to a specific server.
511 511
      * @param  Request $request
512 512
      * @param  int     $id
513
-     * @return \Illuminate\Response\RedirectResponse
513
+     * @return \Illuminate\Http\RedirectResponse
514 514
      */
515 515
     public function newDatabase(Request $request, $id)
516 516
     {
@@ -536,7 +536,7 @@  discard block
 block discarded – undo
536 536
      * Resets the database password for a specific database on this server.
537 537
      * @param  Request $request
538 538
      * @param  int     $id
539
-     * @return \Illuminate\Response\RedirectResponse
539
+     * @return \Symfony\Component\HttpFoundation\Response
540 540
      */
541 541
     public function resetDatabasePassword(Request $request, $id)
542 542
     {
@@ -558,7 +558,7 @@  discard block
 block discarded – undo
558 558
      * Deletes a database from a server.
559 559
      * @param  Request $request
560 560
      * @param  int     $id
561
-     * @return \Illuminate\Response\RedirectResponse
561
+     * @return \Symfony\Component\HttpFoundation\Response
562 562
      */
563 563
     public function deleteDatabase(Request $request, $id, $database)
564 564
     {
Please login to merge, or discard this patch.
app/Repositories/DatabaseRepository.php 1 patch
Doc Comments   +2 added lines, -3 removed lines patch added patch discarded remove patch
@@ -38,7 +38,6 @@  discard block
 block discarded – undo
38 38
      * Adds a new database to a specified database host server.
39 39
      *
40 40
      * @param int   $server   Id of the server to add a database for.
41
-     * @param array $options  Array of options for creating that database.
42 41
      *
43 42
      * @throws \Pterodactyl\Exceptions\DisplayException
44 43
      * @throws \Pterodactyl\Exceptions\DisplayValidationException
@@ -125,7 +124,7 @@  discard block
 block discarded – undo
125 124
      * Updates the password for a given database.
126 125
      * @param  int $id The ID of the database to modify.
127 126
      * @param  string $password The new password to use for the database.
128
-     * @return bool
127
+     * @return boolean|null
129 128
      */
130 129
     public function password($id, $password)
131 130
     {
@@ -162,7 +161,7 @@  discard block
 block discarded – undo
162 161
     /**
163 162
      * Drops a database from the associated MySQL Server.
164 163
      * @param  int $id The ID of the database to drop.
165
-     * @return bool
164
+     * @return boolean|null
166 165
      */
167 166
     public function drop($id)
168 167
     {
Please login to merge, or discard this patch.
app/Repositories/ServerRepository.php 1 patch
Doc Comments   +10 added lines, -1 removed lines patch added patch discarded remove patch
@@ -76,7 +76,7 @@  discard block
 block discarded – undo
76 76
     /**
77 77
      * Adds a new server to the system.
78 78
      * @param   array  $data  An array of data descriptors for creating the server. These should align to the columns in the database.
79
-     * @return  int
79
+     * @return  Models\Server
80 80
      */
81 81
     public function create(array $data)
82 82
     {
@@ -688,6 +688,9 @@  discard block
 block discarded – undo
688 688
         });
689 689
     }
690 690
 
691
+    /**
692
+     * @param integer $id
693
+     */
691 694
     public function queueDeletion($id, $force = false)
692 695
     {
693 696
         $server = Models\Server::findOrFail($id);
@@ -774,6 +777,9 @@  discard block
 block discarded – undo
774 777
         }
775 778
     }
776 779
 
780
+    /**
781
+     * @param integer $id
782
+     */
777 783
     public function cancelDeletion($id)
778 784
     {
779 785
         $server = Models\Server::withTrashed()->findOrFail($id);
@@ -783,6 +789,9 @@  discard block
 block discarded – undo
783 789
         $server->save();
784 790
     }
785 791
 
792
+    /**
793
+     * @param integer $id
794
+     */
786 795
     public function toggleInstall($id)
787 796
     {
788 797
         $server = Models\Server::findOrFail($id);
Please login to merge, or discard this patch.