| 1 | <?php |
||
| 17 | abstract class AggregateRoot |
||
| 18 | { |
||
| 19 | private $recordedEvents = []; |
||
| 20 | |||
| 21 | public function recordedEvents() : array |
||
| 25 | |||
| 26 | public function clearEvents() : void |
||
| 30 | |||
| 31 | protected function publish(DomainEvent $event) : void |
||
| 36 | |||
| 37 | protected function apply(DomainEvent $event) : void |
||
| 45 | |||
| 46 | private function record(DomainEvent $event) : void |
||
| 50 | } |
||
| 51 |