cd4dd35a6e4c58b8a07645a501b43e4d1c915a68
[GitHub/WoltLab/WCF.git] / wcfsetup / install / files / lib / data / trophy / TrophyList.class.php
1 <?php
2
3 namespace wcf\data\trophy;
4
5 use wcf\data\DatabaseObjectList;
6
7 /**
8 * Represents a trophy list.
9 *
10 * @author Joshua Ruesweg
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\Trophy
14 * @since 3.1
15 *
16 * @method Trophy current()
17 * @method Trophy[] getObjects()
18 * @method Trophy|null getSingleObject()
19 * @method Trophy|null seach($objectID)
20 * @property Trophy[] $objects
21 */
22 class TrophyList extends DatabaseObjectList
23 {
24 }