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()));
 }
 public function applyPostTitleChanged(PostTitleChanged $event)
 {
     $this->title = $event->title();
 }