1 | <?php |
||
19 | final class NullBasic implements BasicInterface |
||
20 | { |
||
21 | 1 | public function ack(Ack $command): BasicInterface |
|
25 | |||
26 | 1 | public function cancel(Cancel $command): BasicInterface |
|
30 | |||
31 | 1 | public function consume(Consume $command): Consumer |
|
35 | |||
36 | 1 | public function get(GetCommand $command): Get |
|
40 | |||
41 | 1 | public function publish(Publish $command): BasicInterface |
|
45 | |||
46 | 1 | public function qos(Qos $command): BasicInterface |
|
50 | |||
51 | 1 | public function recover(Recover $command): BasicInterface |
|
55 | |||
56 | 1 | public function reject(Reject $command): BasicInterface |
|
60 | } |
||
61 |