1 | <?php |
||
18 | final class NullQueue implements QueueInterface |
||
19 | { |
||
20 | /** |
||
21 | * {@inheritdoc} |
||
22 | */ |
||
23 | 1 | public function declare(Declaration $command): ?DeclareOk |
|
27 | |||
28 | 1 | public function delete(Deletion $command): ?DeleteOk |
|
32 | |||
33 | 1 | public function bind(Binding $command): QueueInterface |
|
37 | |||
38 | 1 | public function unbind(Unbinding $command): QueueInterface |
|
42 | |||
43 | 1 | public function purge(Purge $command): ?PurgeOk |
|
47 | } |
||
48 |