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 — master (#288)
by
unknown
05:02
created
src/controllers/AuthController.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -2,7 +2,6 @@
 block discarded – undo
2 2
 
3 3
 namespace Serverfireteam\Panel;
4 4
 
5
-use Illuminate\Support\Facades\Session as session;
6 5
 use Illuminate\Routing\Controller;
7 6
 use Illuminate\Support\Facades\Input;
8 7
 
Please login to merge, or discard this patch.
src/models/Link.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -30,6 +30,9 @@
 block discarded – undo
30 30
     }
31 31
 
32 32
 
33
+    /**
34
+     * @param string $display
35
+     */
33 36
     public function getAndSave($url, $display){
34 37
         $this->url = $url;
35 38
         $this->display = $display;
Please login to merge, or discard this patch.
src/models/HasRoles.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@
 block discarded – undo
18 18
      * Assign the given role to the user.
19 19
      *
20 20
      * @param  string $role
21
-     * @return mixed
21
+     * @return \Illuminate\Database\Eloquent\Model
22 22
      */
23 23
     public function assignRole($role)
24 24
     {
Please login to merge, or discard this patch.
src/Serverfireteam/Panel/libs/PermissionCheckMiddleware.php 1 patch
Unused Use Statements   -3 removed lines patch added patch discarded remove patch
@@ -2,10 +2,7 @@
 block discarded – undo
2 2
 
3 3
 namespace Serverfireteam\Panel\libs;
4 4
 
5
-use Lang;
6 5
 use Closure;
7
-use Gate;
8
-
9 6
 use Serverfireteam\Panel\Admin;
10 7
 
11 8
 class PermissionCheckMiddleware
Please login to merge, or discard this patch.