Unify the terms 'Staff' and 'Team'
[GitHub/WoltLab/WCF.git] / wcfsetup / install / files / lib / data / category / CategoryList.class.php
... / ...
CommitLineData
1<?php
2
3namespace wcf\data\category;
4
5use wcf\data\DatabaseObjectList;
6
7/**
8 * Represents a list of categories.
9 *
10 * @author Matthias Schmidt
11 * @copyright 2001-2019 WoltLab GmbH
12 * @license GNU Lesser General Public License <http://opensource.org/licenses/lgpl-license.php>
13 *
14 * @method Category current()
15 * @method Category[] getObjects()
16 * @method Category|null getSingleObject()
17 * @method Category|null search($objectID)
18 * @property Category[] $objects
19 */
20class CategoryList extends DatabaseObjectList
21{
22}