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.

Issues (472)

app/Http/Controllers/AdminPageController.php (3 issues)

1
<?php
2
0 ignored issues
show
Missing file doc comment
Loading history...
3
namespace BristolSU\Module\AssignRoles\Http\Controllers;
4
5
class AdminPageController extends Controller
0 ignored issues
show
Missing doc comment for class AdminPageController
Loading history...
6
{
7
    
8
    public function index()
0 ignored issues
show
Missing doc comment for function index()
Loading history...
9
    {
10
        $this->authorize('admin.view-page');
11
        
12
        return view('assign-roles::admin');
13
    }
14
    
15
}