public function getCategories() {
        $query = "SELECT cat_id FROM nuke_bbcategories ORDER BY cat_order";
        
        foreach ($this->db->fetchAll($query) as $row) {
            yield new Category($row['cat_id']);