be9596e5892271fd19b2d3947ef68d91ef78c11a
[GitHub/WoltLab/com.woltlab.wcf.conversation.git] / files / lib / data / conversation / label / ConversationLabelList.class.php
1 <?php
2
3 namespace wcf\data\conversation\label;
4
5 use wcf\data\DatabaseObjectList;
6
7 /**
8 * Represents a list of conversation labels.
9 *
10 * @author Marcel Werk
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\Conversation\Label
14 *
15 * @method ConversationLabel current()
16 * @method ConversationLabel[] getObjects()
17 * @method ConversationLabel|null search($objectID)
18 * @property ConversationLabel[] $objects
19 */
20 class ConversationLabelList extends DatabaseObjectList
21 {
22 /**
23 * @inheritDoc
24 */
25 public $className = ConversationLabel::class;
26 }