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 ( ae6819...4aeb17 )
by Cees-Jan
06:28
created

Connection::sendCnt()   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\RabbitMQ\Management\Resource;
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
 *     recv_oct_details="Details",
12
 *     send_oct_details="Details",
13
 *     client_properties="Connection\ClientProperties"
14
 * )
15
 * @EmptyResource("EmptyConnection")
16
 */
17
abstract class Connection extends AbstractResource implements ConnectionInterface
18
{
19
    /**
20
     * @var int
21
     */
22
    protected $recv_oct;
23
24
    /**
25
     * @var int
26
     */
27
    protected $send_oct;
28
29
    /**
30
     * @var Details
31
     */
32
    protected $recv_oct_details;
33
34
    /**
35
     * @var Details
36
     */
37
    protected $send_oct_details;
38
39
    /**
40
     * @var int
41
     */
42
    protected $recv_cnt;
43
44
    /**
45
     * @var int
46
     */
47
    protected $send_cnt;
48
49
    /**
50
     * @var int
51
     */
52
    protected $send_pend;
53
54
    /**
55
     * @var string
56
     */
57
    protected $state;
58
59
    /**
60
     * @var int
61
     */
62
    protected $channels;
63
64
    /**
65
     * @var string
66
     */
67
    protected $type;
68
69
    /**
70
     * @var string
71
     */
72
    protected $node;
73
74
    /**
75
     * @var string
76
     */
77
    protected $name;
78
79
    /**
80
     * @var int
81
     */
82
    protected $port;
83
84
    /**
85
     * @var int
86
     */
87
    protected $peer_port;
88
89
    /**
90
     * @var string
91
     */
92
    protected $host;
93
94
    /**
95
     * @var string
96
     */
97
    protected $peer_host;
98
99
    /**
100
     * @var bool
101
     */
102
    protected $ssl;
103
104
    /**
105
     * @var mixed
106
     */
107
    protected $peer_cert_subject;
108
109
    /**
110
     * @var mixed
111
     */
112
    protected $peer_cert_issuer;
113
114
    /**
115
     * @var mixed
116
     */
117
    protected $peer_cert_validity;
118
119
    /**
120
     * @var string
121
     */
122
    protected $auth_mechanism;
123
124
    /**
125
     * @var mixed
126
     */
127
    protected $ssl_protocol;
128
129
    /**
130
     * @var mixed
131
     */
132
    protected $ssl_key_exchange;
133
134
    /**
135
     * @var mixed
136
     */
137
    protected $ssl_cipher;
138
139
    /**
140
     * @var mixed
141
     */
142
    protected $ssl_hash;
143
144
    /**
145
     * @var string
146
     */
147
    protected $protocol;
148
149
    /**
150
     * @var string
151
     */
152
    protected $user;
153
154
    /**
155
     * @var string
156
     */
157
    protected $vhost;
158
159
    /**
160
     * @var int
161
     */
162
    protected $timeout;
163
164
    /**
165
     * @var int
166
     */
167
    protected $frame_max;
168
169
    /**
170
     * @var int
171
     */
172
    protected $channel_max;
173
174
    /**
175
     * @var Connection\ClientProperties
176
     */
177
    protected $client_properties;
178
179
    /**
180
     * @var int
181
     */
182
    protected $connected_at;
183
184
    /**
185
     * @return int
186
     */
187 4
    public function recvOct(): int
188
    {
189 4
        return $this->recv_oct;
190
    }
191
192
    /**
193
     * @return int
194
     */
195 4
    public function sendOct(): int
196
    {
197 4
        return $this->send_oct;
198
    }
199
200
    /**
201
     * @return Details
202
     */
203
    public function recvOctDetails(): Details
204
    {
205
        return $this->recv_oct_details;
206
    }
207
208
    /**
209
     * @return Details
210
     */
211
    public function sendOctDetails(): Details
212
    {
213
        return $this->send_oct_details;
214
    }
215
216
    /**
217
     * @return int
218
     */
219 4
    public function recvCnt(): int
220
    {
221 4
        return $this->recv_cnt;
222
    }
223
224
    /**
225
     * @return int
226
     */
227 4
    public function sendCnt(): int
228
    {
229 4
        return $this->send_cnt;
230
    }
231
232
    /**
233
     * @return int
234
     */
235 4
    public function sendPend(): int
236
    {
237 4
        return $this->send_pend;
238
    }
239
240
    /**
241
     * @return string
242
     */
243 4
    public function state(): string
244
    {
245 4
        return $this->state;
246
    }
247
248
    /**
249
     * @return int
250
     */
251 4
    public function channels(): int
252
    {
253 4
        return $this->channels;
254
    }
255
256
    /**
257
     * @return string
258
     */
259 4
    public function type(): string
260
    {
261 4
        return $this->type;
262
    }
263
264
    /**
265
     * @return string
266
     */
267 4
    public function node(): string
268
    {
269 4
        return $this->node;
270
    }
271
272
    /**
273
     * @return string
274
     */
275 4
    public function name(): string
276
    {
277 4
        return $this->name;
278
    }
279
280
    /**
281
     * @return int
282
     */
283 4
    public function port(): int
284
    {
285 4
        return $this->port;
286
    }
287
288
    /**
289
     * @return int
290
     */
291 4
    public function peerPort(): int
292
    {
293 4
        return $this->peer_port;
294
    }
295
296
    /**
297
     * @return string
298
     */
299 4
    public function host(): string
300
    {
301 4
        return $this->host;
302
    }
303
304
    /**
305
     * @return string
306
     */
307 4
    public function peerHost(): string
308
    {
309 4
        return $this->peer_host;
310
    }
311
312
    /**
313
     * @return bool
314
     */
315 4
    public function ssl(): bool
316
    {
317 4
        return $this->ssl;
318
    }
319
320
    /**
321
     * @return mixed
322
     */
323
    public function peerCertSubject(): mixed
324
    {
325
        return $this->peer_cert_subject;
326
    }
327
328
    /**
329
     * @return mixed
330
     */
331
    public function peerCertIssuer(): mixed
332
    {
333
        return $this->peer_cert_issuer;
334
    }
335
336
    /**
337
     * @return mixed
338
     */
339
    public function peerCertValidity(): mixed
340
    {
341
        return $this->peer_cert_validity;
342
    }
343
344
    /**
345
     * @return string
346
     */
347 4
    public function authMechanism(): string
348
    {
349 4
        return $this->auth_mechanism;
350
    }
351
352
    /**
353
     * @return mixed
354
     */
355
    public function sslProtocol(): mixed
356
    {
357
        return $this->ssl_protocol;
358
    }
359
360
    /**
361
     * @return mixed
362
     */
363
    public function sslKeyExchange(): mixed
364
    {
365
        return $this->ssl_key_exchange;
366
    }
367
368
    /**
369
     * @return mixed
370
     */
371
    public function sslCipher(): mixed
372
    {
373
        return $this->ssl_cipher;
374
    }
375
376
    /**
377
     * @return mixed
378
     */
379
    public function sslHash(): mixed
380
    {
381
        return $this->ssl_hash;
382
    }
383
384
    /**
385
     * @return string
386
     */
387 4
    public function protocol(): string
388
    {
389 4
        return $this->protocol;
390
    }
391
392
    /**
393
     * @return string
394
     */
395 4
    public function user(): string
396
    {
397 4
        return $this->user;
398
    }
399
400
    /**
401
     * @return string
402
     */
403 4
    public function vhost(): string
404
    {
405 4
        return $this->vhost;
406
    }
407
408
    /**
409
     * @return int
410
     */
411 4
    public function timeout(): int
412
    {
413 4
        return $this->timeout;
414
    }
415
416
    /**
417
     * @return int
418
     */
419 4
    public function frameMax(): int
420
    {
421 4
        return $this->frame_max;
422
    }
423
424
    /**
425
     * @return int
426
     */
427 4
    public function channelMax(): int
428
    {
429 4
        return $this->channel_max;
430
    }
431
432
    /**
433
     * @return Connection\ClientProperties
434
     */
435
    public function clientProperties(): Connection\ClientProperties
436
    {
437
        return $this->client_properties;
438
    }
439
440
    /**
441
     * @return int
442
     */
443 4
    public function connectedAt(): int
444
    {
445 4
        return $this->connected_at;
446
    }
447
}
448