Add `@method` comment for `DatabaseObjectList::getSingleObject()` in subclasses
[GitHub/WoltLab/WCF.git] / wcfsetup / install / files / lib / data / user / follow / UserFollowList.class.php
1 <?php
2
3 namespace wcf\data\user\follow;
4
5 use wcf\data\DatabaseObjectList;
6
7 /**
8 * Represents a list of followers.
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\User\Follow
14 *
15 * @method UserFollow current()
16 * @method UserFollow[] getObjects()
17 * @method UserFollow|null getSingleObject()
18 * @method UserFollow|null seach($objectID)
19 * @property UserFollow[] $objects
20 */
21 class UserFollowList extends DatabaseObjectList
22 {
23 }