Fix typo in method documentation
[GitHub/WoltLab/WCF.git] / wcfsetup / install / files / lib / data / contact / recipient / ContactRecipientList.class.php
CommitLineData
d486ae88 1<?php
a9229942 2
d486ae88 3namespace wcf\data\contact\recipient;
a9229942 4
d486ae88
AE
5use wcf\data\DatabaseObjectList;
6
7/**
8 * Represents a list of contact recipients.
d486ae88 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\Contact\Recipient
14 * @since 3.1
15 *
16 * @method ContactRecipient current()
17 * @method ContactRecipient[] getObjects()
62d64fe4 18 * @method ContactRecipient|null getSingleObject()
74a327b0 19 * @method ContactRecipient|null search($objectID)
a9229942 20 * @property ContactRecipient[] $objects
d486ae88 21 */
a9229942
TD
22class ContactRecipientList extends DatabaseObjectList
23{
24 /**
25 * @inheritDoc
26 */
27 public $className = ContactRecipient::class;
28
29 /**
30 * @inheritDoc
31 */
32 public $sqlOrderBy = 'showOrder';
d486ae88 33}