Beispiel #1
0
 /**
  * Clear aggregate roots recorded events
  */
 public function clearChanges()
 {
     $this->aggregateRoot->clearRecordedEvents();
 }
Beispiel #2
0
 public function testClearRootsRecordedEvents()
 {
     $this->root->expects($this->once())->method('clearRecordedEvents');
     $this->aggregate->clearChanges();
 }