コード例 #1
0
ファイル: Aggregate.php プロジェクト: potfur/journal
 /**
  * Clear aggregate roots recorded events
  */
 public function clearChanges()
 {
     $this->aggregateRoot->clearRecordedEvents();
 }
コード例 #2
0
ファイル: AggregateTest.php プロジェクト: potfur/journal
 public function testClearRootsRecordedEvents()
 {
     $this->root->expects($this->once())->method('clearRecordedEvents');
     $this->aggregate->clearChanges();
 }