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