1 | <?php declare(strict_types=1); |
||
7 | abstract class EmptyCapabilities implements CapabilitiesInterface, EmptyResourceInterface |
||
8 | { |
||
9 | /** |
||
10 | * @return bool |
||
11 | */ |
||
12 | 2 | public function publisherConfirms() : bool |
|
16 | |||
17 | /** |
||
18 | * @return bool |
||
19 | */ |
||
20 | 2 | public function exchangeExchangeBindings() : bool |
|
24 | |||
25 | /** |
||
26 | * @return bool |
||
27 | */ |
||
28 | 2 | public function consumerCancelNotify() : bool |
|
32 | |||
33 | /** |
||
34 | * @return bool |
||
35 | */ |
||
36 | 2 | public function authenticationFailureClose() : bool |
|
40 | |||
41 | /** |
||
42 | * @return bool |
||
43 | */ |
||
44 | 2 | public function basicNack() : bool |
|
48 | |||
49 | /** |
||
50 | * @return bool |
||
51 | */ |
||
52 | 2 | public function connectionBlocked() : bool |
|
56 | } |
||
57 |