| 1 | <?php |
||
| 5 | class TransportReceiveInfrastructure |
||
| 6 | { |
||
| 7 | /** |
||
| 8 | * @var callable |
||
| 9 | */ |
||
| 10 | private $messagePusherFactory; |
||
| 11 | |||
| 12 | /** |
||
| 13 | * @var callable |
||
| 14 | */ |
||
| 15 | private $queueCreatorFactory; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * @param callable $messagePusherFactory |
||
| 19 | * @param callable $queueCreatorFactory |
||
| 20 | */ |
||
| 21 | 4 | public function __construct( |
|
| 28 | |||
| 29 | /** |
||
| 30 | * @return callable |
||
| 31 | */ |
||
| 32 | 1 | public function getMessagePusherFactory() |
|
| 36 | |||
| 37 | /** |
||
| 38 | * @return callable |
||
| 39 | */ |
||
| 40 | 1 | public function getQueueCreatorFactory() |
|
| 44 | } |
||
| 45 |