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 ( 4e2a22...679227 )
by Cees-Jan
05:21
created

Directory::repositoryFullname()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 4
Ratio 100 %

Code Coverage

Tests 2
CRAP Score 1

Importance

Changes 0
Metric Value
dl 4
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\Hydrator\Annotation\EmptyResource;
6
use ApiClients\Foundation\Hydrator\Annotation\Nested;
7
use ApiClients\Foundation\Resource\AbstractResource;
8
9
/**
10
 * @Nested(
11
 *     _links="Contents\Links"
12
 * )
13
 * @EmptyResource("Contents\EmptyDirectory")
14
 */
15 View Code Duplication
abstract class Directory extends AbstractResource implements DirectoryInterface
0 ignored issues
show
Duplication introduced by
This class seems to be duplicated in your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
16
{
17
    /**
18
     * @var string
19
     */
20
    protected $type;
21
22
    /**
23
     * @var string
24
     */
25
    protected $encoding;
26
27
    /**
28
     * @var int
29
     */
30
    protected $size;
31
32
    /**
33
     * @var string
34
     */
35
    protected $name;
36
37
    /**
38
     * @var string
39
     */
40
    protected $path;
41
42
    /**
43
     * @var string
44
     */
45
    protected $sha;
46
47
    /**
48
     * @var string
49
     */
50
    protected $url;
51
52
    /**
53
     * @var string
54
     */
55
    protected $git_url;
56
57
    /**
58
     * @var string
59
     */
60
    protected $html_url;
61
62
    /**
63
     * @var string
64
     */
65
    protected $download_url;
66
67
    /**
68
     * @var string
69
     */
70
    protected $repository_fullname;
71
72
    /**
73
     * @var Links
74
     */
75
    // @codingStandardsIgnoreStart
76
    protected $_links;
77
    // @codingStandardsIgnoreEnd
78
79
    /**
80
     * @return string
81
     */
82 4
    public function type() : string
83
    {
84 4
        return $this->type;
85
    }
86
87
    /**
88
     * @return string
89
     */
90 4
    public function encoding() : string
91
    {
92 4
        return $this->encoding;
93
    }
94
95
    /**
96
     * @return int
97
     */
98 4
    public function size() : int
99
    {
100 4
        return $this->size;
101
    }
102
103
    /**
104
     * @return string
105
     */
106 4
    public function name() : string
107
    {
108 4
        return $this->name;
109
    }
110
111
    /**
112
     * @return string
113
     */
114 4
    public function path() : string
115
    {
116 4
        return $this->path;
117
    }
118
119
    /**
120
     * @return string
121
     */
122 4
    public function sha() : string
123
    {
124 4
        return $this->sha;
125
    }
126
127
    /**
128
     * @return string
129
     */
130 4
    public function url() : string
131
    {
132 4
        return $this->url;
133
    }
134
135
    /**
136
     * @return string
137
     */
138 4
    public function gitUrl() : string
139
    {
140 4
        return $this->git_url;
141
    }
142
143
    /**
144
     * @return string
145
     */
146 4
    public function htmlUrl() : string
147
    {
148 4
        return $this->html_url;
149
    }
150
151
    /**
152
     * @return string
153
     */
154 4
    public function downloadUrl() : string
155
    {
156 4
        return $this->download_url;
157
    }
158
159
    /**
160
     * @return string
161
     */
162 4
    public function repositoryFullname(): string
163
    {
164 4
        return $this->repository_fullname;
165
    }
166
167
    /**
168
     * @return Links
169
     */
170
    public function links() : Links
171
    {
172
        return $this->_links;
173
    }
174
}
175