FluxBB\Models\ConversationRepository::addReply PHP Method

addReply() public method

public addReply ( $conversation, $post )
    public function addReply($conversation, $post)
    {
        $post->conversation_id = $conversation->id;
        $post->id = $this->database->table('posts')->insertGetId($post->toArray());
    }