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)

ImplementsAdditionalProperties.php (15 issues)

1
<?php
2
0 ignored issues
show
Missing file doc comment
Loading history...
3
namespace BristolSU\ControlDB\AdditionalProperties;
4
5
/**
6
 * Handles additional properties
7
 */
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...
8
interface ImplementsAdditionalProperties
9
{
10
11
    /**
12
     * Add an additional property
13
     *
14
     * @param $key
0 ignored issues
show
Missing parameter comment
Loading history...
15
     */
0 ignored issues
show
Missing @return tag in function comment
Loading history...
16
    public static function addProperty(string $key): void;
17
18
    /**
19
     * Get all additional attributes the model is using
20
     *
21
     * @return array
22
     */
23
    public static function getAdditionalAttributes(): array;
24
    
25
    /**
26
     * Retrieve an additional attribute value
27
     *
28
     * @param string $key Key of the attribute
29
     * @return mixed Value of the attribute
0 ignored issues
show
Tag @return cannot be grouped with parameter tags in a doc comment
Loading history...
30
     */
31
    public function getAdditionalAttribute(string $key);
32
33
    /**
34
     * Set an additional attribute value
35
     *
36
     * @param string $key Key of the attribute
0 ignored issues
show
Expected 3 spaces after parameter name; 1 found
Loading history...
37
     * @param mixed $value Value of the attribute
0 ignored issues
show
Expected 2 spaces after parameter type; 1 found
Loading history...
38
     */
0 ignored issues
show
Missing @return tag in function comment
Loading history...
39
    public function setAdditionalAttribute(string $key, $value);
40
41
    /**
42
     * Save an additional attribute value
43
     *
44
     * @param string $key Key of the attribute
0 ignored issues
show
Expected 3 spaces after parameter name; 1 found
Loading history...
45
     * @param mixed $value Value of the attribute
0 ignored issues
show
Expected 2 spaces after parameter type; 1 found
Loading history...
46
     */
0 ignored issues
show
Missing @return tag in function comment
Loading history...
47
    public function saveAdditionalAttribute(string $key, $value);
48
49
}