Added basic settings and recipient management
[GitHub/WoltLab/WCF.git] / wcfsetup / install / files / lib / data / contact / recipient / ContactRecipientList.class.php
CommitLineData
d486ae88
AE
1<?php
2namespace wcf\data\contact\recipient;
3use wcf\data\DatabaseObjectList;
4
5/**
6 * Represents a list of contact recipients.
7 *
8 * @author Alexander Ebert
9 * @copyright 2001-2017 WoltLab GmbH
10 * @license GNU Lesser General Public License <http://opensource.org/licenses/lgpl-license.php>
11 * @package WoltLabSuite\Core\Data\Contact\Recipient
12 * @since 3.1
13 *
14 * @method ContactRecipient current()
15 * @method ContactRecipient[] getObjects()
16 * @method ContactRecipient|null search($objectID)
17 * @property ContactRecipient[] $objects
18 */
19class ContactRecipientList extends DatabaseObjectList {
20 /**
21 * @inheritDoc
22 */
23 public $className = ContactRecipient::class;
24
25 /**
26 * @inheritDoc
27 */
28 public $sqlOrderBy = 'showOrder';
29}