1 | <?php |
||
13 | class SingleQueueManager implements SingleQueueManagerInterface |
||
14 | { |
||
15 | /** |
||
16 | * Send driver. |
||
17 | * |
||
18 | * @var SendDriverInterface |
||
19 | */ |
||
20 | private $sendDriver; |
||
21 | |||
22 | /** |
||
23 | * {@inheritdoc} |
||
24 | */ |
||
25 | 2 | public function sendCommand(CommandInterface $command) |
|
32 | |||
33 | /** |
||
34 | * {@inheritdoc} |
||
35 | */ |
||
36 | 1 | public function setSendDriver(SendDriverInterface $sendDriver) |
|
40 | } |
||
41 |