FluxBB\Models\Topic::addReply PHP Méthode

addReply() public méthode

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