ProophEventSourcing domain events are of the type AggregateChanged
Author: Alexander Miertsch (kontakt@codeliner.ws)
Inheritance: extends Prooph\EventSourcing\AggregateChanged
Esempio n. 1
0
 /**
  * @param UserWasRenamed $event
  */
 protected function whenUserWasRenamed(UserWasRenamed $event)
 {
     $this->name = $event->newName();
 }