1 | <?php |
||
18 | class MiddlewareDomainEventBus implements EventBus |
||
19 | { |
||
20 | /** |
||
21 | * @var MiddlewareChain |
||
22 | */ |
||
23 | private $chain; |
||
24 | |||
25 | /** |
||
26 | * @param MiddlewareChain $chain |
||
27 | */ |
||
28 | 2 | public function __construct(MiddlewareChain $chain) |
|
32 | |||
33 | /** |
||
34 | * @param Event $event |
||
35 | */ |
||
36 | 2 | public function publish(Event $event) |
|
40 | |||
41 | /** |
||
42 | * @param AggregateEvents $aggregator |
||
43 | */ |
||
44 | 1 | public function pullAndPublish(AggregateEvents $aggregator) |
|
50 | } |
||
51 |