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/Contracts/Models/DataRole.php (10 issues)

1
<?php
2
0 ignored issues
show
Missing file doc comment
Loading history...
3
namespace BristolSU\ControlDB\Contracts\Models;
4
5
use BristolSU\ControlDB\AdditionalProperties\ImplementsAdditionalProperties;
6
use Illuminate\Contracts\Support\Arrayable;
7
use Illuminate\Contracts\Support\Jsonable;
8
9
/**
10
 * Handles information about a role
11
 */
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...
12
interface DataRole extends ImplementsAdditionalProperties, Arrayable, Jsonable
13
{
14
15
    /**
16
     * Get the ID of the data role
17
     * 
18
     * @return int
19
     */
20
    public function id(): int;
21
22
    /**
23
     * Get the name of the role
24
     * 
25
     * @return string|null
26
     */
27
    public function roleName(): ?string;
28
29
    /**
30
     * Get the email of the role
31
     * 
32
     * @return string|null
33
     */
34
    public function email(): ?string;
35
36
    /**
37
     * Set the role name
38
     * 
39
     * @param string|null $roleName
0 ignored issues
show
Missing parameter comment
Loading history...
40
     */
0 ignored issues
show
Missing @return tag in function comment
Loading history...
41
    public function setRoleName(?string $roleName): void;
42
43
    /**
44
     * Set the role email
45
     * 
46
     * @param string|null $email
0 ignored issues
show
Missing parameter comment
Loading history...
47
     */
0 ignored issues
show
Missing @return tag in function comment
Loading history...
48
    public function setEmail(?string $email): void;
49
50
    /**
51
     * Get the role using the data attributes
52
     * 
53
     * @return Role|null
54
     */
55
    public function role(): ?Role;
56
57
58
}