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