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 — master ( 22233b...bf567c )
by Cees-Jan
06:48
created

EmptyFile::type()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 2
CRAP Score 1

Importance

Changes 0
Metric Value
dl 0
loc 4
ccs 2
cts 2
cp 1
rs 10
c 0
b 0
f 0
cc 1
eloc 2
nc 1
nop 0
crap 1
1
<?php declare(strict_types=1);
2
3
namespace ApiClients\Client\Github\Resource\Contents;
4
5
use ApiClients\Foundation\Resource\EmptyResourceInterface;
6
use RuntimeException;
7
8
abstract class EmptyFile implements FileInterface, EmptyResourceInterface
9
{
10
    /**
11
     * @return string
12
     */
13 2
    public function type(): string
14
    {
15 2
        return null;
16
    }
17
18
    /**
19
     * @return string
20
     */
21 2
    public function encoding(): string
22
    {
23 2
        return null;
24
    }
25
26
    /**
27
     * @return int
28
     */
29 2
    public function size(): int
30
    {
31 2
        return null;
32
    }
33
34
    /**
35
     * @return string
36
     */
37 2
    public function name(): string
38
    {
39 2
        return null;
40
    }
41
42
    /**
43
     * @return string
44
     */
45 2
    public function path(): string
46
    {
47 2
        return null;
48
    }
49
50
    /**
51
     * @return string
52
     */
53 2
    public function content(): string
54
    {
55 2
        return null;
56
    }
57
58
    /**
59
     * @throws RuntimeException
60
     * @return string
61
     */
62 2
    public function decodedContent(): string
63
    {
64 2
        return null;
65
    }
66
67
    /**
68
     * @return string
69
     */
70 2
    public function sha(): string
71
    {
72 2
        return null;
73
    }
74
75
    /**
76
     * @return string
77
     */
78 2
    public function url(): string
79
    {
80 2
        return null;
81
    }
82
83
    /**
84
     * @return string
85
     */
86 2
    public function gitUrl(): string
87
    {
88 2
        return null;
89
    }
90
91
    /**
92
     * @return string
93
     */
94 2
    public function htmlUrl(): string
95
    {
96 2
        return null;
97
    }
98
99
    /**
100
     * @return string
101
     */
102 2
    public function downloadUrl(): string
103
    {
104 2
        return null;
105
    }
106
107
    /**
108
     * @return string
109
     */
110 2
    public function repositoryFullname(): string
111
    {
112 2
        return null;
113
    }
114
115
    /**
116
     * @return Links
117
     */
118 2
    public function links(): Links
119
    {
120 2
        return null;
121
    }
122
}
123