Apply PSR-12 code style (#3886)
[GitHub/WoltLab/WCF.git] / wcfsetup / install / files / lib / data / tag / TagList.class.php
CommitLineData
04c06e85 1<?php
a9229942 2
04c06e85 3namespace wcf\data\tag;
a9229942 4
04c06e85
MW
5use wcf\data\DatabaseObjectList;
6
7/**
8 * Represents a list of tags.
e82bf444 9 *
a9229942
TD
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
04c06e85 19 */
a9229942
TD
20class TagList extends DatabaseObjectList
21{
22 /**
23 * @inheritDoc
24 */
25 public $className = Tag::class;
04c06e85 26}