/**
  * @param ConfigurePostTypes $event
  */
 public function addPostType(ConfigurePostTypes $event)
 {
     $event->add(DiscussionTaggedPost::class);
 }
 /**
  * @param ConfigurePostTypes $event
  */
 public function configurePostTypes(ConfigurePostTypes $event)
 {
     $event->add(DiscussionStickiedPost::class);
 }