Update code for tutorial series part 1
[GitHub/WoltLab/woltlab.github.io.git] / snippets / tutorial / tutorial-series / part-1 / files / lib / data / person / PersonList.class.php
CommitLineData
85e6151d 1<?php
2b4179e2 2
85e6151d 3namespace wcf\data\person;
2b4179e2 4
85e6151d
MS
5use wcf\data\DatabaseObjectList;
6
7/**
8 * Represents a list of people.
2b4179e2
MS
9 *
10 * @author Matthias Schmidt
11 * @copyright 2001-2021 WoltLab GmbH
12 * @license GNU Lesser General Public License <http://opensource.org/licenses/lgpl-license.php>
13 * @package WoltLabSuite\Core\Data\Person
14 *
15 * @method Person current()
16 * @method Person[] getObjects()
17 * @method Person|null search($objectID)
18 * @property Person[] $objects
85e6151d 19 */
2b4179e2
MS
20class PersonList extends DatabaseObjectList
21{
22}