1 | <?php |
||
20 | class EventStream |
||
21 | { |
||
22 | private $aggregateRootId; |
||
23 | private $events; |
||
24 | |||
25 | public function __construct(Id $aggregateRootId, DomainEventCollection $events) |
||
30 | |||
31 | public function aggregateRootId() : Id |
||
32 | { |
||
33 | return $this->aggregateRootId; |
||
34 | } |
||
35 | |||
36 | public function events() : DomainEventCollection |
||
40 | } |
||
41 |