1 | <?php declare(strict_types=1); |
||
7 | abstract class EmptyObjectTotals implements ObjectTotalsInterface, EmptyResourceInterface |
||
8 | { |
||
9 | /** |
||
10 | * @return int |
||
11 | */ |
||
12 | public function consumers() : int |
||
16 | |||
17 | /** |
||
18 | * @return int |
||
19 | */ |
||
20 | public function queues() : int |
||
24 | |||
25 | /** |
||
26 | * @return int |
||
27 | */ |
||
28 | public function exchanges() : int |
||
32 | |||
33 | /** |
||
34 | * @return int |
||
35 | */ |
||
36 | public function connections() : int |
||
40 | |||
41 | /** |
||
42 | * @return int |
||
43 | */ |
||
44 | public function channels() : int |
||
48 | } |
||
49 |