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;
    }