| 1 | <?php |
||
| 21 | trait TriggerEvents |
||
| 22 | { |
||
| 23 | private $recordedEvents = []; |
||
| 24 | |||
| 25 | public function recordedEvents() : array |
||
| 29 | |||
| 30 | public function clearEvents() : void |
||
| 34 | |||
| 35 | protected function publish(DomainEvent $event) : void |
||
| 41 | |||
| 42 | protected function apply(DomainEvent $event) : void |
||
| 50 | |||
| 51 | private function record(DomainEvent $event) : void |
||
| 55 | } |
||
| 56 |