コード例 #1
0
 public function whenPostTitleChanged(PostTitleChanged $event)
 {
     $post = $this->posts->find($event->postId());
     $this->posts->save(new PostList($post->id(), $post->authorId(), $event->title(), $post->content(), $post->type(), $post->publishedAt()));
 }
コード例 #2
0
 public function applyPostTitleChanged(PostTitleChanged $event)
 {
     $this->title = $event->title();
 }