FluxBB\Models\Topic::addReply PHP 메소드

addReply() 공개 메소드

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