1 | <?php |
||
13 | class NullQueueManager implements MultipleQueueManagerInterface, CommandRouterInterface, SingleQueueManagerInterface |
||
14 | { |
||
15 | /** |
||
16 | * {@inheritdoc} |
||
17 | */ |
||
18 | 1 | public function addSendDriver($pool, SendDriverInterface $sendDriver, $isDefault = false) |
|
22 | |||
23 | /** |
||
24 | * {@inheritdoc} |
||
25 | */ |
||
26 | 1 | public function addCommandRoute($commandExpression, $poolName) |
|
29 | |||
30 | /** |
||
31 | * {@inheritdoc} |
||
32 | */ |
||
33 | 1 | public function sendCommand(CommandInterface $command) |
|
37 | |||
38 | public function setSendDriver(SendDriverInterface $sendDriver) |
||
42 | } |
||
43 |