FluxBB\Models\ConversationRepository::getPostsIn PHP Méthode

getPostsIn() public méthode

public getPostsIn ( $conversation )
    public function getPostsIn($conversation)
    {
        $rows = $this->database->table('posts')->where('conversation_id', $conversation->id)->get();
        return $rows;
    }