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
Push — 4.2-to-master ( ed215f )
by E
06:47
created

AccessLevels::protectedMethod()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 1
nc 1
nop 0
dl 0
loc 3
rs 10
c 0
b 0
f 0
1
<?php declare(strict_types=1);
2
3
namespace Project;
4
5
/**
6
 * @property \stdClass[] $issue696
7
 * @method getSome()
8
 * @method \stdClass[] methodRelatedToIssue696(\stdClass[] $argument)
9
 */
10
final class AccessLevels extends ParentClass implements RichInterface
0 ignored issues
show
Bug introduced by
There is one abstract method getSomeStuff in this class; you could implement it, or declare this class as abstract.
Loading history...
11
{
12
    use SomeTrait;
13
    use SomeTraitNotPresentHere;
14
15
    const LEVEL = 5;
16
17
    /**
18
     * @var mixed
19
     */
20
    public $publicProperty;
21
22
23
    /**
24
     * @var mixed
25
     */
26
    protected $protectedProperty;
27
28
29
    /**
30
     * @var mixed
31
     */
32
    private $privateProperty;
0 ignored issues
show
Unused Code introduced by
The property $privateProperty is not used and could be removed.

This check marks private properties in classes that are never used. Those properties can be removed.

Loading history...
33
34
    public function publicMethod()
35
    {
36
    }
37
38
    protected function protectedMethod()
39
    {
40
    }
41
42
    private function privateMethod()
0 ignored issues
show
Unused Code introduced by
This method is not used, and could be removed.
Loading history...
43
    {
44
    }
45
}
46