FluxBB\Models\CategoryRepository::getConversationsIn PHP Method

getConversationsIn() public method

public getConversationsIn ( $category )
    public function getConversationsIn($category)
    {
        if (is_null($category)) {
            return [];
        }
        $rows = $this->database->table('conversations')->where('category_slug', $category->slug)->get();
        return $rows;
    }