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