Fix typo in method documentation
[GitHub/WoltLab/WCF.git] / wcfsetup / install / files / lib / data / like / LikeList.class.php
... / ...
CommitLineData
1<?php
2
3namespace wcf\data\like;
4
5use wcf\data\DatabaseObjectList;
6
7/**
8 * Represents a list of likes.
9 *
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\Like
14 *
15 * @method Like current()
16 * @method Like[] getObjects()
17 * @method Like|null getSingleObject()
18 * @method Like|null search($objectID)
19 * @property Like[] $objects
20 */
21class LikeList extends DatabaseObjectList
22{
23 /**
24 * @inheritDoc
25 */
26 public $className = Like::class;
27}