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.

EmptyQueue   A
last analyzed

Complexity

Total Complexity 35

Size/Duplication

Total Lines 282
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Test Coverage

Coverage 100%

Importance

Changes 0
Metric Value
wmc 35
lcom 0
cbo 0
dl 0
loc 282
ccs 70
cts 70
cp 1
rs 9.6
c 0
b 0
f 0

35 Methods

Rating   Name   Duplication   Size   Complexity  
A memory() 0 4 1
A messageStats() 0 4 1
A messages() 0 4 1
A messagesDetails() 0 4 1
A messagesReady() 0 4 1
A messagesReadyDetails() 0 4 1
A messagesUnacknowledged() 0 4 1
A messagesUnacknowledgedDetails() 0 4 1
A idleSince() 0 4 1
A consumerUtilisation() 0 4 1
A policy() 0 4 1
A exclusiveConsumerTag() 0 4 1
A consumers() 0 4 1
A recoverableSlaves() 0 4 1
A state() 0 4 1
A messagesRam() 0 4 1
A messagesReadyRam() 0 4 1
A messagesUnacknowledgedRam() 0 4 1
A messagesPersistent() 0 4 1
A messageBytes() 0 4 1
A messageBytesReady() 0 4 1
A messageBytesUnacknowledged() 0 4 1
A messageBytesRam() 0 4 1
A messageBytesPersistent() 0 4 1
A headMessageTimestamp() 0 4 1
A diskReads() 0 4 1
A diskWrites() 0 4 1
A backingQueueStatus() 0 4 1
A name() 0 4 1
A vhost() 0 4 1
A durable() 0 4 1
A autoDelete() 0 4 1
A exclusive() 0 4 1
A arguments() 0 4 1
A node() 0 4 1
1
<?php declare(strict_types=1);
2
3
namespace ApiClients\Client\RabbitMQ\Management\Resource;
4
5
use ApiClients\Foundation\Resource\EmptyResourceInterface;
6
use DateTime;
7
8
abstract class EmptyQueue implements QueueInterface, EmptyResourceInterface
9
{
10
    /**
11
     * @return int
12
     */
13 2
    public function memory(): int
14
    {
15 2
        return null;
16
    }
17
18
    /**
19
     * @return MessageStats
20
     */
21 2
    public function messageStats(): MessageStats
22
    {
23 2
        return null;
24
    }
25
26
    /**
27
     * @return int
28
     */
29 2
    public function messages(): int
30
    {
31 2
        return null;
32
    }
33
34
    /**
35
     * @return Details
36
     */
37 2
    public function messagesDetails(): Details
38
    {
39 2
        return null;
40
    }
41
42
    /**
43
     * @return int
44
     */
45 2
    public function messagesReady(): int
46
    {
47 2
        return null;
48
    }
49
50
    /**
51
     * @return Details
52
     */
53 2
    public function messagesReadyDetails(): Details
54
    {
55 2
        return null;
56
    }
57
58
    /**
59
     * @return int
60
     */
61 2
    public function messagesUnacknowledged(): int
62
    {
63 2
        return null;
64
    }
65
66
    /**
67
     * @return Details
68
     */
69 2
    public function messagesUnacknowledgedDetails(): Details
70
    {
71 2
        return null;
72
    }
73
74
    /**
75
     * @return DateTime
76
     */
77 2
    public function idleSince(): DateTime
78
    {
79 2
        return null;
80
    }
81
82
    /**
83
     * @return mixed
84
     */
85 2
    public function consumerUtilisation(): mixed
86
    {
87 2
        return null;
88
    }
89
90
    /**
91
     * @return mixed
92
     */
93 2
    public function policy(): mixed
94
    {
95 2
        return null;
96
    }
97
98
    /**
99
     * @return mixed
100
     */
101 2
    public function exclusiveConsumerTag(): mixed
102
    {
103 2
        return null;
104
    }
105
106
    /**
107
     * @return int
108
     */
109 2
    public function consumers(): int
110
    {
111 2
        return null;
112
    }
113
114
    /**
115
     * @return mixed
116
     */
117 2
    public function recoverableSlaves(): mixed
118
    {
119 2
        return null;
120
    }
121
122
    /**
123
     * @return string
124
     */
125 2
    public function state(): string
126
    {
127 2
        return null;
128
    }
129
130
    /**
131
     * @return int
132
     */
133 2
    public function messagesRam(): int
134
    {
135 2
        return null;
136
    }
137
138
    /**
139
     * @return int
140
     */
141 2
    public function messagesReadyRam(): int
142
    {
143 2
        return null;
144
    }
145
146
    /**
147
     * @return int
148
     */
149 2
    public function messagesUnacknowledgedRam(): int
150
    {
151 2
        return null;
152
    }
153
154
    /**
155
     * @return int
156
     */
157 2
    public function messagesPersistent(): int
158
    {
159 2
        return null;
160
    }
161
162
    /**
163
     * @return int
164
     */
165 2
    public function messageBytes(): int
166
    {
167 2
        return null;
168
    }
169
170
    /**
171
     * @return int
172
     */
173 2
    public function messageBytesReady(): int
174
    {
175 2
        return null;
176
    }
177
178
    /**
179
     * @return int
180
     */
181 2
    public function messageBytesUnacknowledged(): int
182
    {
183 2
        return null;
184
    }
185
186
    /**
187
     * @return int
188
     */
189 2
    public function messageBytesRam(): int
190
    {
191 2
        return null;
192
    }
193
194
    /**
195
     * @return int
196
     */
197 2
    public function messageBytesPersistent(): int
198
    {
199 2
        return null;
200
    }
201
202
    /**
203
     * @return DateTime
204
     */
205 2
    public function headMessageTimestamp(): DateTime
206
    {
207 2
        return null;
208
    }
209
210
    /**
211
     * @return int
212
     */
213 2
    public function diskReads(): int
214
    {
215 2
        return null;
216
    }
217
218
    /**
219
     * @return int
220
     */
221 2
    public function diskWrites(): int
222
    {
223 2
        return null;
224
    }
225
226
    /**
227
     * @return Queue\BackingQueueStatus
228
     */
229 2
    public function backingQueueStatus(): Queue\BackingQueueStatus
230
    {
231 2
        return null;
232
    }
233
234
    /**
235
     * @return string
236
     */
237 2
    public function name(): string
238
    {
239 2
        return null;
240
    }
241
242
    /**
243
     * @return string
244
     */
245 2
    public function vhost(): string
246
    {
247 2
        return null;
248
    }
249
250
    /**
251
     * @return bool
252
     */
253 2
    public function durable(): bool
254
    {
255 2
        return null;
256
    }
257
258
    /**
259
     * @return bool
260
     */
261 2
    public function autoDelete(): bool
262
    {
263 2
        return null;
264
    }
265
266
    /**
267
     * @return bool
268
     */
269 2
    public function exclusive(): bool
270
    {
271 2
        return null;
272
    }
273
274
    /**
275
     * @return array
276
     */
277 2
    public function arguments(): array
278
    {
279 2
        return null;
280
    }
281
282
    /**
283
     * @return string
284
     */
285 2
    public function node(): string
286
    {
287 2
        return null;
288
    }
289
}
290