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