| 1 | <?php |
||
| 15 | class RabbitMqConnector implements ConnectorInterface |
||
| 16 | { |
||
| 17 | /** |
||
| 18 | * @var ConsumerInterface |
||
| 19 | */ |
||
| 20 | private $consumer; |
||
| 21 | |||
| 22 | /** |
||
| 23 | * @var ProducerInterface |
||
| 24 | */ |
||
| 25 | private $producer; |
||
| 26 | |||
| 27 | /** @var array */ |
||
| 28 | private $configuration; |
||
| 29 | |||
| 30 | public function __construct( |
||
| 40 | |||
| 41 | public function connect(array $config) : Queue |
||
| 45 | } |
||
| 46 |