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 ( 759ebd...aa6e73 )
by Dane
10:12
created
app/Exceptions/Handler.php 1 patch
Doc Comments   -2 removed lines patch added patch discarded remove patch
@@ -33,7 +33,6 @@  discard block
 block discarded – undo
33 33
      *
34 34
      * This is a great spot to send exceptions to Sentry, Bugsnag, etc.
35 35
      *
36
-     * @param  \Exception  $e
37 36
      * @return void
38 37
      */
39 38
     public function report(Exception $exception)
@@ -45,7 +44,6 @@  discard block
 block discarded – undo
45 44
      * Render an exception into an HTTP response.
46 45
      *
47 46
      * @param  \Illuminate\Http\Request  $request
48
-     * @param  \Exception  $e
49 47
      * @return \Illuminate\Http\Response
50 48
      */
51 49
     public function render($request, Exception $exception)
Please login to merge, or discard this patch.
app/Http/Controllers/Admin/ServersController.php 1 patch
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -190,7 +190,7 @@  discard block
 block discarded – undo
190 190
      * Returns a JSON tree of all avaliable nodes in a given location.
191 191
      *
192 192
      * @param  \Illuminate\Http\Request $request
193
-     * @return \Illuminate\Contracts\View\View
193
+     * @return \Illuminate\Http\JsonResponse
194 194
      */
195 195
     public function postNewServerGetNodes(Request $request)
196 196
     {
@@ -209,7 +209,7 @@  discard block
 block discarded – undo
209 209
      * Returns a JSON tree of all avaliable IPs and Ports on a given node.
210 210
      *
211 211
      * @param  \Illuminate\Http\Request $request
212
-     * @return \Illuminate\Contracts\View\View
212
+     * @return \Illuminate\Http\JsonResponse
213 213
      */
214 214
     public function postNewServerGetIps(Request $request)
215 215
     {
@@ -238,7 +238,7 @@  discard block
 block discarded – undo
238 238
      * Returns a JSON tree of all avaliable options for a given service.
239 239
      *
240 240
      * @param  \Illuminate\Http\Request $request
241
-     * @return \Illuminate\Contracts\View\View
241
+     * @return \Illuminate\Http\JsonResponse
242 242
      */
243 243
     public function postNewServerServiceOptions(Request $request)
244 244
     {
@@ -258,7 +258,7 @@  discard block
 block discarded – undo
258 258
      * Returns a JSON tree of all avaliable variables for a given service option.
259 259
      *
260 260
      * @param  \Illuminate\Http\Request $request
261
-     * @return \Illuminate\Contracts\View\View
261
+     * @return \Illuminate\Http\JsonResponse
262 262
      */
263 263
     public function postNewServerServiceVariables(Request $request)
264 264
     {
Please login to merge, or discard this patch.
app/Http/Controllers/Auth/LoginController.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -141,7 +141,7 @@
 block discarded – undo
141 141
      * Check if the provided user has TOTP enabled.
142 142
      *
143 143
      * @param  \Illuminate\Http\Request  $request
144
-     * @return \Illuminate\Http\Response
144
+     * @return \Illuminate\Http\JsonResponse
145 145
      */
146 146
     public function checkTotp(Request $request)
147 147
     {
Please login to merge, or discard this patch.
app/Http/Controllers/Base/AccountController.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -49,7 +49,7 @@  discard block
 block discarded – undo
49 49
      * Update an account email.
50 50
      *
51 51
      * @param  \Illuminate\Http\Request $request
52
-     * @return \Illuminate\Http\Response
52
+     * @return \Illuminate\Http\RedirectResponse
53 53
      */
54 54
     public function email(Request $request)
55 55
     {
@@ -78,7 +78,7 @@  discard block
 block discarded – undo
78 78
      * Update an account password.
79 79
      *
80 80
      * @param  \Illuminate\Http\Request $request
81
-     * @return \Illuminate\Http\Response
81
+     * @return \Illuminate\Http\RedirectResponse
82 82
      */
83 83
     public function password(Request $request)
84 84
     {
Please login to merge, or discard this patch.
app/Http/Controllers/Base/SecurityController.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -53,7 +53,7 @@  discard block
 block discarded – undo
53 53
      * that they can generate a valid response.
54 54
      *
55 55
      * @param  \Illuminate\Http\Request $request
56
-     * @return \Illuminate\Contracts\View\View
56
+     * @return \Illuminate\Http\JsonResponse
57 57
      */
58 58
     public function generateTotp(Request $request)
59 59
     {
@@ -100,7 +100,7 @@  discard block
 block discarded – undo
100 100
      * Disables TOTP on an account.
101 101
      *
102 102
      * @param  \Illuminate\Http\Request $request
103
-     * @return \Illuminate\Http\Response
103
+     * @return \Illuminate\Http\RedirectResponse
104 104
      */
105 105
     public function disableTotp(Request $request)
106 106
     {
Please login to merge, or discard this patch.
app/Http/Controllers/Server/AjaxController.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -67,7 +67,7 @@
 block discarded – undo
67 67
      *
68 68
      * @param  \Illuminate\Http\Request $request
69 69
      * @param  string $uuid
70
-     * @return \Illuminate\Contracts\View\View
70
+     * @return \Illuminate\Http\JsonResponse
71 71
      */
72 72
     public function getStatus(Request $request, $uuid)
73 73
     {
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  Request $request
170 170
      * @param  string  $uuid
171 171
      * @param  string  $file
172
-     * @return \Illuminate\Contracts\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/Listeners/DeleteServerListener.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -49,7 +49,7 @@
 block discarded – undo
49 49
     /**
50 50
      * Handle the event.
51 51
      *
52
-     * @param  DeleteServerEvent  $event
52
+     * @param  ServerDeleted  $event
53 53
      * @return void
54 54
      */
55 55
     public function handle(ServerDeleted $event)
Please login to merge, or discard this patch.
app/Models/Server.php 1 patch
Doc Comments   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -107,7 +107,7 @@  discard block
 block discarded – undo
107 107
      * Determine if we need to change the server's daemonSecret value to
108 108
      * match that of the user if they are a subuser.
109 109
      *
110
-     * @param Illuminate\Database\Eloquent\Model\Server $server
110
+     * @param Server $server
111 111
      * @return string
112 112
      */
113 113
     public static function getUserDaemonSecret(Server $server)
@@ -131,6 +131,7 @@  discard block
 block discarded – undo
131 131
      * Returns array of all servers owned by the logged in user.
132 132
      * Returns all users servers if user is a root admin.
133 133
      *
134
+     * @param integer $paginate
134 135
      * @return \Illuminate\Database\Eloquent\Collection
135 136
      */
136 137
     public static function getUserServers($paginate = null)
Please login to merge, or discard this patch.