Flarum\Event\ConfigurePostTypes::add PHP Méthode

add() public méthode

public add ( $class )
    public function add($class)
    {
        $this->models[] = $class;
    }

Usage Example

 /**
  * @param ConfigurePostTypes $event
  */
 public function addPostType(ConfigurePostTypes $event)
 {
     $event->add(DiscussionTaggedPost::class);
 }
All Usage Examples Of Flarum\Event\ConfigurePostTypes::add
ConfigurePostTypes