1 | <?php |
||
20 | class PrePersistEvent extends DomainEvent |
||
21 | { |
||
22 | /** |
||
23 | * @var EventSourcedAggregateRootInterface |
||
24 | */ |
||
25 | protected $aggregate; |
||
26 | |||
27 | /** |
||
28 | * PrePersistEvent constructor. |
||
29 | * |
||
30 | * @param EventSourcedAggregateRootInterface $aggregate |
||
31 | */ |
||
32 | public function __construct(EventSourcedAggregateRootInterface $aggregate) |
||
38 | |||
39 | /** |
||
40 | * @return EventSourcedAggregateRootInterface |
||
41 | */ |
||
42 | public function aggregate() |
||
46 | } |
||
47 |