| 1 | <?php declare(strict_types = 1); |
||
| 8 | class TestAsynchronousMessageProducerBridge implements AsynchronousMessageProducerBridge |
||
| 9 | { |
||
| 10 | public const KEY_ROUTING_KEY = 'routingKey'; |
||
| 11 | public const KEY_MESSAGE = 'message'; |
||
| 12 | |||
| 13 | private $published = []; |
||
| 14 | |||
| 15 | public function publishWithRoutingKey(Message $message, string $routingKey): void |
||
| 22 | |||
| 23 | public function getPublished() |
||
| 27 | } |
||
| 28 |