Merge branch '3.1' into 5.2
[GitHub/WoltLab/WCF.git] / wcfsetup / install / files / lib / data / object / type / ObjectTypeList.class.php
1 <?php
2 namespace wcf\data\object\type;
3 use wcf\data\DatabaseObjectList;
4
5 /**
6 * Represents a list of object types.
7 *
8 * @author Alexander Ebert
9 * @copyright 2001-2019 WoltLab GmbH
10 * @license GNU Lesser General Public License <http://opensource.org/licenses/lgpl-license.php>
11 * @package WoltLabSuite\Core\Data\Object\Type\Definition
12 *
13 * @method ObjectType current()
14 * @method ObjectType[] getObjects()
15 * @method ObjectType|null search($objectID)
16 * @property ObjectType[] $objects
17 */
18 class ObjectTypeList extends DatabaseObjectList {
19 /**
20 * @inheritDoc
21 */
22 public $className = ObjectType::class;
23 }