FluxBB\Models\Topic::addReply PHP Method

addReply() public method

public addReply ( Post $post )
$post Post
    public function addReply(Post $post)
    {
        $post->topic()->associate($this);
        $this->lastPost()->associate($post);
        $this->forum->lastPost()->associate($post);
    }