1 | <?php |
||
24 | final class ReplayingEventDispatcher implements EventDispatcher |
||
25 | { |
||
26 | /** |
||
27 | * @var ProjectorInterface[] |
||
28 | */ |
||
29 | private $projectors; |
||
30 | |||
31 | /** |
||
32 | * @param ProjectorInterface $projector |
||
33 | */ |
||
34 | public function registerProjector(ProjectorInterface $projector) |
||
38 | |||
39 | public function dispatch(DomainEventStreamInterface $events) |
||
47 | } |
||
48 |