e9151aeeb009ad40f531d583b87e1191fdad1280
[GitHub/WoltLab/WCF.git] / wcfsetup / install / files / lib / data / category / CategoryList.class.php
1 <?php
2
3 namespace wcf\data\category;
4
5 use 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 */
20 class CategoryList extends DatabaseObjectList
21 {
22 }