Fix code style issues
[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()
17 * @method Like|null search($objectID)
18 * @property Like[] $objects
00b6f956 19 */
a9229942
TD
20class LikeList extends DatabaseObjectList
21{
22 /**
23 * @inheritDoc
24 */
25 public $className = Like::class;
00b6f956 26}