1 | <?php |
||
12 | class SagasOnlyOnceEventDispatcher implements \Gica\Cqrs\Event\EventDispatcher |
||
13 | { |
||
14 | |||
15 | /** @var EventSubscriber */ |
||
16 | private $eventSubscriber; |
||
17 | /** |
||
18 | * @var SagaRepository |
||
19 | */ |
||
20 | private $sagaRepository; |
||
21 | |||
22 | 3 | public function __construct( |
|
30 | |||
31 | 3 | public function dispatchEvent(EventWithMetaData $eventWithMetaData) |
|
49 | } |