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