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

EmptyBackingQueueStatus   A

Complexity

Total Complexity 13

Size/Duplication

Total Lines 106
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 0
Metric Value
wmc 13
lcom 0
cbo 0
dl 0
loc 106
rs 10
c 0
b 0
f 0

13 Methods

Rating   Name   Duplication   Size   Complexity  
A mode() 0 4 1
A q1() 0 4 1
A q2() 0 4 1
A delta() 0 4 1
A q3() 0 4 1
A q4() 0 4 1
A len() 0 4 1
A targetRamCount() 0 4 1
A nextSeqId() 0 4 1
A avgIngressRate() 0 4 1
A avgEgressRate() 0 4 1
A avgAckIngressRate() 0 4 1
A avgAckEgressRate() 0 4 1
1
<?php declare(strict_types=1);
2
3
namespace ApiClients\Client\RabbitMQ\Management\Resource\Queue;
4
5
use ApiClients\Foundation\Resource\EmptyResourceInterface;
6
7
abstract class EmptyBackingQueueStatus implements BackingQueueStatusInterface, EmptyResourceInterface
8
{
9
    /**
10
     * @return string
11
     */
12
    public function mode() : string
13
    {
14
        return null;
15
    }
16
17
    /**
18
     * @return int
19
     */
20
    public function q1() : int
21
    {
22
        return null;
23
    }
24
25
    /**
26
     * @return int
27
     */
28
    public function q2() : int
29
    {
30
        return null;
31
    }
32
33
    /**
34
     * @return array
35
     */
36
    public function delta() : array
37
    {
38
        return null;
39
    }
40
41
    /**
42
     * @return int
43
     */
44
    public function q3() : int
45
    {
46
        return null;
47
    }
48
49
    /**
50
     * @return int
51
     */
52
    public function q4() : int
53
    {
54
        return null;
55
    }
56
57
    /**
58
     * @return int
59
     */
60
    public function len() : int
61
    {
62
        return null;
63
    }
64
65
    /**
66
     * @return mixed
67
     */
68
    public function targetRamCount() : mixed
69
    {
70
        return null;
71
    }
72
73
    /**
74
     * @return int
75
     */
76
    public function nextSeqId() : int
77
    {
78
        return null;
79
    }
80
81
    /**
82
     * @return float
83
     */
84
    public function avgIngressRate() : float
85
    {
86
        return null;
87
    }
88
89
    /**
90
     * @return float
91
     */
92
    public function avgEgressRate() : float
93
    {
94
        return null;
95
    }
96
97
    /**
98
     * @return float
99
     */
100
    public function avgAckIngressRate() : float
101
    {
102
        return null;
103
    }
104
105
    /**
106
     * @return float
107
     */
108
    public function avgAckEgressRate() : float
109
    {
110
        return null;
111
    }
112
}
113