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 (4568)

src/Models/Pivots/UserGroup.php (6 issues)

1
<?php
2
0 ignored issues
show
Missing file doc comment
Loading history...
3
namespace BristolSU\ControlDB\Models\Pivots;
4
5
use Illuminate\Database\Eloquent\Model;
6
use Illuminate\Database\Eloquent\SoftDeletes;
7
8
/**
9
 * Handles the linking of a user to a group
10
 */
0 ignored issues
show
Missing @category tag in class comment
Loading history...
Missing @package tag in class comment
Loading history...
Missing @author tag in class comment
Loading history...
Missing @license tag in class comment
Loading history...
Missing @link tag in class comment
Loading history...
11
class UserGroup extends Model
12
{
13
    use SoftDeletes;
14
15
    /**
16
     * Fillable attributes
17
     * 
18
     * @var array 
19
     */
20
    protected $fillable = [
21
        'user_id', 'group_id'
22
    ];
23
    
24
    /**
25
     * Indicates if the IDs are auto-incrementing.
26
     *
27
     * @var bool
28
     */
29
    public $incrementing = true;
30
31
    /**
32
     * Table to use
33
     * 
34
     * @var string 
35
     */
36
    public $table = 'control_group_user';
37
    
38
}