1 | <?php |
||
14 | class Dispatcher implements DomainEventDispatcher |
||
15 | { |
||
16 | /** |
||
17 | * @var EventDispatcher |
||
18 | */ |
||
19 | private $dispatcher; |
||
20 | |||
21 | /** |
||
22 | * @param EventDispatcher $dispatcher |
||
23 | */ |
||
24 | 2 | public function __construct(EventDispatcher $dispatcher) |
|
28 | |||
29 | /** |
||
30 | * {@inheritdoc} |
||
31 | */ |
||
32 | 1 | public function dispatch(DomainEvent $event) |
|
39 | } |