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 ( fb589a...8cac2a )
by
unknown
12s
created
app/Repositories/UserRepository.php 1 patch
Doc Comments   +1 added lines, -5 removed lines patch added patch discarded remove patch
@@ -47,10 +47,6 @@  discard block
 block discarded – undo
47 47
     /**
48 48
      * Creates a user on the panel. Returns the created user's ID.
49 49
      *
50
-     * @param  string       $email
51
-     * @param  string|null  $password An unhashed version of the user's password.
52
-     * @param  bool         $admin    Boolean value if user should be an admin or not.
53
-     * @param  int          $token    A custom user ID.
54 50
      * @return bool|int
55 51
      */
56 52
     public function create(array $data)
@@ -167,7 +163,7 @@  discard block
 block discarded – undo
167 163
      * Deletes a user on the panel, returns the number of records deleted.
168 164
      *
169 165
      * @param  int $id
170
-     * @return int
166
+     * @return boolean
171 167
      */
172 168
     public function delete($id)
173 169
     {
Please login to merge, or discard this patch.
app/Http/Controllers/Base/AccountController.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
      * Update details for a users account.
51 51
      * @param  \Illuminate\Http\Request $request
52
-     * @return void
52
+     * @return null|\Illuminate\Http\RedirectResponse
53 53
      */
54 54
     public function update(Request $request)
55 55
     {
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
@@ -187,7 +187,7 @@  discard block
 block discarded – undo
187 187
      * Returns a JSON tree of all avaliable nodes in a given location.
188 188
      *
189 189
      * @param  \Illuminate\Http\Request $request
190
-     * @return \Illuminate\Contracts\View\View
190
+     * @return \Illuminate\Http\JsonResponse
191 191
      */
192 192
     public function postNewServerGetNodes(Request $request)
193 193
     {
@@ -204,7 +204,7 @@  discard block
 block discarded – undo
204 204
      * Returns a JSON tree of all avaliable IPs and Ports on a given node.
205 205
      *
206 206
      * @param  \Illuminate\Http\Request $request
207
-     * @return \Illuminate\Contracts\View\View
207
+     * @return \Illuminate\Http\JsonResponse
208 208
      */
209 209
     public function postNewServerGetIps(Request $request)
210 210
     {
@@ -232,7 +232,7 @@  discard block
 block discarded – undo
232 232
      * Returns a JSON tree of all avaliable options for a given service.
233 233
      *
234 234
      * @param  \Illuminate\Http\Request $request
235
-     * @return \Illuminate\Contracts\View\View
235
+     * @return \Illuminate\Http\JsonResponse
236 236
      */
237 237
     public function postNewServerServiceOptions(Request $request)
238 238
     {
@@ -251,7 +251,7 @@  discard block
 block discarded – undo
251 251
      * Returns a JSON tree of all avaliable variables for a given service option.
252 252
      *
253 253
      * @param  \Illuminate\Http\Request $request
254
-     * @return \Illuminate\Contracts\View\View
254
+     * @return \Illuminate\Http\JsonResponse
255 255
      */
256 256
     public function postNewServerOptionDetails(Request $request)
257 257
     {
Please login to merge, or discard this patch.
app/Http/Controllers/Daemon/PackController.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -64,7 +64,7 @@
 block discarded – undo
64 64
      * Returns the hash information for a pack.
65 65
      *
66 66
      * @param  \Illuminate\Http\Request   $request
67
-     * @return \Illuminate\Http\Response
67
+     * @return \Illuminate\Http\JsonResponse
68 68
      */
69 69
     public function hash(Request $request, $uuid)
70 70
     {
Please login to merge, or discard this patch.
app/Http/Controllers/Daemon/ServiceController.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -45,7 +45,7 @@
 block discarded – undo
45 45
      * caching purposes.
46 46
      *
47 47
      * @param  \Illuminate\Http\Request   $request
48
-     * @return \Illuminate\Http\Response
48
+     * @return \Illuminate\Http\JsonResponse
49 49
      */
50 50
     public function list(Request $request)
51 51
     {
Please login to merge, or discard this patch.
app/Notifications/SendPasswordReset.php 1 patch
Doc Comments   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -42,6 +42,7 @@  discard block
 block discarded – undo
42 42
     /**
43 43
      * Create a new notification instance.
44 44
      *
45
+     * @param string $token
45 46
      * @return void
46 47
      */
47 48
     public function __construct($token)
@@ -53,7 +54,7 @@  discard block
 block discarded – undo
53 54
      * Get the notification's delivery channels.
54 55
      *
55 56
      * @param  mixed  $notifiable
56
-     * @return array
57
+     * @return string[]
57 58
      */
58 59
     public function via($notifiable)
59 60
     {
Please login to merge, or discard this patch.
app/Repositories/Daemon/FileRepository.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -65,7 +65,6 @@
 block discarded – undo
65 65
     /**
66 66
      * Constructor.
67 67
      *
68
-     * @param string $server The server Short UUID
69 68
      */
70 69
     public function __construct($uuid)
71 70
     {
Please login to merge, or discard this patch.
app/Services/APILogService.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -35,6 +35,9 @@
 block discarded – undo
35 35
         //
36 36
     }
37 37
 
38
+    /**
39
+     * @param string $error
40
+     */
38 41
     public static function log(Request $request, $error = null, $authorized = false)
39 42
     {
40 43
         if ($request->bearerToken() && ! empty($request->bearerToken())) {
Please login to merge, or discard this patch.