FluxBB\Models\Post::isFirstPostOfTopic PHP 메소드

isFirstPostOfTopic() 공개 메소드

return boolean true if it is the first post of the topic, else false
public isFirstPostOfTopic ( )
    public function isFirstPostOfTopic()
    {
        return $this->id == $this->topic->first_post_id;
    }