コード例 #1
0
ファイル: ToDoSaga.php プロジェクト: martyn82/apha
 /**
  * @param DeadlineExpired $event
  */
 public function onDeadlineExpired(DeadlineExpired $event)
 {
     unset($this->openItems[$event->getIdentity()->getValue()]);
 }
コード例 #2
0
ファイル: ToDoItemProjections.php プロジェクト: martyn82/apha
 /**
  * @Apha\EventHandler()
  * @param DeadlineExpired $event
  */
 public function onDeadlineExpired(DeadlineExpired $event)
 {
     $this->stateStorage->delete($event->getIdentity()->getValue());
 }