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 ( b9a562...23f435 )
by Cees-Jan
03:57
created

EmptyOverview   A

Complexity

Total Complexity 15

Size/Duplication

Total Lines 122
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Test Coverage

Coverage 100%

Importance

Changes 0
Metric Value
wmc 15
lcom 0
cbo 0
dl 0
loc 122
ccs 30
cts 30
cp 1
rs 10
c 0
b 0
f 0

15 Methods

Rating   Name   Duplication   Size   Complexity  
A managementVersion() 0 4 1
A ratesMode() 0 4 1
A exchangeTypes() 0 4 1
A rabbitmqVersion() 0 4 1
A clusterName() 0 4 1
A erlangVersion() 0 4 1
A erlangFullVersion() 0 4 1
A messageStats() 0 4 1
A queueTotals() 0 4 1
A objectTotals() 0 4 1
A statisticsDbEventQueue() 0 4 1
A node() 0 4 1
A statisticsDbNode() 0 4 1
A listeners() 0 4 1
A contexts() 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
7
abstract class EmptyOverview implements OverviewInterface, EmptyResourceInterface
8
{
9
    /**
10
     * @return string
11
     */
12 2
    public function managementVersion() : string
13
    {
14 2
        return null;
15
    }
16
17
    /**
18
     * @return string
19
     */
20 2
    public function ratesMode() : string
21
    {
22 2
        return null;
23
    }
24
25
    /**
26
     * @return array
27
     */
28 2
    public function exchangeTypes() : array
29
    {
30 2
        return null;
31
    }
32
33
    /**
34
     * @return string
35
     */
36 2
    public function rabbitmqVersion() : string
37
    {
38 2
        return null;
39
    }
40
41
    /**
42
     * @return string
43
     */
44 2
    public function clusterName() : string
45
    {
46 2
        return null;
47
    }
48
49
    /**
50
     * @return string
51
     */
52 2
    public function erlangVersion() : string
53
    {
54 2
        return null;
55
    }
56
57
    /**
58
     * @return string
59
     */
60 2
    public function erlangFullVersion() : string
61
    {
62 2
        return null;
63
    }
64
65
    /**
66
     * @return MessageStats
67
     */
68 2
    public function messageStats() : MessageStats
69
    {
70 2
        return null;
71
    }
72
73
    /**
74
     * @return Overview\QueueTotals
75
     */
76 2
    public function queueTotals() : Overview\QueueTotals
77
    {
78 2
        return null;
79
    }
80
81
    /**
82
     * @return Overview\ObjectTotals
83
     */
84 2
    public function objectTotals() : Overview\ObjectTotals
85
    {
86 2
        return null;
87
    }
88
89
    /**
90
     * @return int
91
     */
92 2
    public function statisticsDbEventQueue() : int
93
    {
94 2
        return null;
95
    }
96
97
    /**
98
     * @return string
99
     */
100 2
    public function node() : string
101
    {
102 2
        return null;
103
    }
104
105
    /**
106
     * @return string
107
     */
108 2
    public function statisticsDbNode() : string
109
    {
110 2
        return null;
111
    }
112
113
    /**
114
     * @return array
115
     */
116 2
    public function listeners() : array
117
    {
118 2
        return null;
119
    }
120
121
    /**
122
     * @return array
123
     */
124 2
    public function contexts() : array
125
    {
126 2
        return null;
127
    }
128
}
129