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 ( 1aa191...b8c3ab )
by Dane
03:07 queued 19s
created
app/Http/Controllers/Admin/ServiceController.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -89,7 +89,7 @@  discard block
 block discarded – undo
89 89
      * Handle post action for new service.
90 90
      *
91 91
      * @param  Request $request
92
-     * @return \Illuminate\Response\RedirectResponse
92
+     * @return \Illuminate\Http\RedirectResponse
93 93
      */
94 94
     public function create(Request $request)
95 95
     {
@@ -119,7 +119,7 @@  discard block
 block discarded – undo
119 119
      *
120 120
      * @param  Request $request
121 121
      * @param  int     $id
122
-     * @return \Illuminate\Response\RedirectResponse
122
+     * @return \Illuminate\Http\RedirectResponse
123 123
      */
124 124
     public function edit(Request $request, $id)
125 125
     {
Please login to merge, or discard this patch.
app/Models/ServiceVariable.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -57,7 +57,7 @@
 block discarded – undo
57 57
      * Returns the display executable for the option and will use the parent
58 58
      * service one if the option does not have one defined.
59 59
      *
60
-     * @return string
60
+     * @return boolean
61 61
      */
62 62
     public function getRequiredAttribute($value)
63 63
     {
Please login to merge, or discard this patch.
app/Repositories/PackRepository.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -25,7 +25,6 @@
 block discarded – undo
25 25
 namespace Pterodactyl\Repositories;
26 26
 
27 27
 use DB;
28
-use Uuid;
29 28
 use Storage;
30 29
 use Validator;
31 30
 use Pterodactyl\Models\Pack;
Please login to merge, or discard this patch.
app/Http/Controllers/Admin/LocationController.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -64,7 +64,7 @@  discard block
 block discarded – undo
64 64
      * Handle request to create new location.
65 65
      *
66 66
      * @param  Request $request
67
-     * @return \Illuminate\Response\RedirectResponse
67
+     * @return \Illuminate\Http\RedirectResponse
68 68
      */
69 69
     public function create(Request $request)
70 70
     {
@@ -90,7 +90,7 @@  discard block
 block discarded – undo
90 90
      *
91 91
      * @param  Request $request
92 92
      * @param  int     $id
93
-     * @return \Illuminate\Response\RedirectResponse
93
+     * @return \Illuminate\Http\RedirectResponse
94 94
      */
95 95
     public function update(Request $request, $id)
96 96
     {
Please login to merge, or discard this patch.
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.