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 ( ee40b2...664ab6 )
by Cees-Jan
07:03
created

EmptyConnection::sendOctDetails()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 4
Ratio 100 %

Importance

Changes 0
Metric Value
dl 4
loc 4
rs 10
c 0
b 0
f 0
cc 1
eloc 2
nc 1
nop 0
1
<?php declare(strict_types=1);
2
3
namespace ApiClients\Client\RabbitMQ\Management\Resource;
4
5
use ApiClients\Foundation\Resource\EmptyResourceInterface;
6
7 View Code Duplication
abstract class EmptyConnection implements ConnectionInterface, EmptyResourceInterface
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...
8
{
9
    /**
10
     * @return int
11
     */
12
    public function recvOct() : int
13
    {
14
        return null;
15
    }
16
17
    /**
18
     * @return int
19
     */
20
    public function sendOct() : int
21
    {
22
        return null;
23
    }
24
25
    /**
26
     * @return Details
27
     */
28
    public function recvOctDetails() : Details
29
    {
30
        return null;
31
    }
32
33
    /**
34
     * @return Details
35
     */
36
    public function sendOctDetails() : Details
37
    {
38
        return null;
39
    }
40
41
    /**
42
     * @return int
43
     */
44
    public function recvCnt() : int
45
    {
46
        return null;
47
    }
48
49
    /**
50
     * @return int
51
     */
52
    public function sendCnt() : int
53
    {
54
        return null;
55
    }
56
57
    /**
58
     * @return int
59
     */
60
    public function sendPend() : int
61
    {
62
        return null;
63
    }
64
65
    /**
66
     * @return string
67
     */
68
    public function state() : string
69
    {
70
        return null;
71
    }
72
73
    /**
74
     * @return int
75
     */
76
    public function channels() : int
77
    {
78
        return null;
79
    }
80
81
    /**
82
     * @return string
83
     */
84
    public function type() : string
85
    {
86
        return null;
87
    }
88
89
    /**
90
     * @return string
91
     */
92
    public function node() : string
93
    {
94
        return null;
95
    }
96
97
    /**
98
     * @return string
99
     */
100
    public function name() : string
101
    {
102
        return null;
103
    }
104
105
    /**
106
     * @return int
107
     */
108
    public function port() : int
109
    {
110
        return null;
111
    }
112
113
    /**
114
     * @return int
115
     */
116
    public function peerPort() : int
117
    {
118
        return null;
119
    }
120
121
    /**
122
     * @return string
123
     */
124
    public function host() : string
125
    {
126
        return null;
127
    }
128
129
    /**
130
     * @return string
131
     */
132
    public function peerHost() : string
133
    {
134
        return null;
135
    }
136
137
    /**
138
     * @return bool
139
     */
140
    public function ssl() : bool
141
    {
142
        return null;
143
    }
144
145
    /**
146
     * @return mixed
147
     */
148
    public function peerCertSubject() : mixed
149
    {
150
        return null;
151
    }
152
153
    /**
154
     * @return mixed
155
     */
156
    public function peerCertIssuer() : mixed
157
    {
158
        return null;
159
    }
160
161
    /**
162
     * @return mixed
163
     */
164
    public function peerCertValidity() : mixed
165
    {
166
        return null;
167
    }
168
169
    /**
170
     * @return string
171
     */
172
    public function authMechanism() : string
173
    {
174
        return null;
175
    }
176
177
    /**
178
     * @return mixed
179
     */
180
    public function sslProtocol() : mixed
181
    {
182
        return null;
183
    }
184
185
    /**
186
     * @return mixed
187
     */
188
    public function sslKeyExchange() : mixed
189
    {
190
        return null;
191
    }
192
193
    /**
194
     * @return mixed
195
     */
196
    public function sslCipher() : mixed
197
    {
198
        return null;
199
    }
200
201
    /**
202
     * @return mixed
203
     */
204
    public function sslHash() : mixed
205
    {
206
        return null;
207
    }
208
209
    /**
210
     * @return string
211
     */
212
    public function protocol() : string
213
    {
214
        return null;
215
    }
216
217
    /**
218
     * @return string
219
     */
220
    public function user() : string
221
    {
222
        return null;
223
    }
224
225
    /**
226
     * @return string
227
     */
228
    public function vhost() : string
229
    {
230
        return null;
231
    }
232
233
    /**
234
     * @return int
235
     */
236
    public function timeout() : int
237
    {
238
        return null;
239
    }
240
241
    /**
242
     * @return int
243
     */
244
    public function frameMax() : int
245
    {
246
        return null;
247
    }
248
249
    /**
250
     * @return int
251
     */
252
    public function channelMax() : int
253
    {
254
        return null;
255
    }
256
257
    /**
258
     * @return Connection\ClientProperties
259
     */
260
    public function clientProperties() : Connection\ClientProperties
261
    {
262
        return null;
263
    }
264
265
    /**
266
     * @return int
267
     */
268
    public function connectedAt() : int
269
    {
270
        return null;
271
    }
272
}
273