1 | <?php |
||
12 | final class QueueMiddleware implements Middleware |
||
13 | { |
||
14 | /** |
||
15 | * @var PublisherFactory |
||
16 | */ |
||
17 | private $publisherFactory; |
||
18 | /** |
||
19 | * @var QueueProducerStrategyInterface |
||
20 | */ |
||
21 | private $queueProducerStrategy; |
||
22 | |||
23 | 3 | public function __construct( |
|
30 | |||
31 | 3 | public function execute($command, callable $next) |
|
49 | } |
||
50 |