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 (#350)
by Dane
13:44 queued 10:47
created
app/Http/Controllers/Admin/PackController.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -84,7 +84,7 @@  discard block
 block discarded – undo
84 84
      * Handle create pack request and route user to location.
85 85
      *
86 86
      * @param  Request $request
87
-     * @return \Illuminate\View\View
87
+     * @return \Illuminate\Http\RedirectResponse
88 88
      */
89 89
     public function create(Request $request)
90 90
     {
@@ -134,7 +134,7 @@  discard block
 block discarded – undo
134 134
      *
135 135
      * @param  Request $request
136 136
      * @param  int     $id
137
-     * @return \Illuminate\Response\RedirectResponse
137
+     * @return \Illuminate\Http\RedirectResponse
138 138
      */
139 139
     public function update(Request $request, $id)
140 140
     {
Please login to merge, or discard this patch.
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.