Apply PSR-12 code style (#3886)
[GitHub/WoltLab/WCF.git] / wcfsetup / install / files / lib / data / user / group / option / UserGroupOptionList.class.php
1 <?php
2
3 namespace wcf\data\user\group\option;
4
5 use wcf\data\DatabaseObjectList;
6
7 /**
8 * Represents a list of user group options.
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\Group\Option
14 *
15 * @method UserGroupOption current()
16 * @method UserGroupOption[] getObjects()
17 * @method UserGroupOption|null search($objectID)
18 * @property UserGroupOption[] $objects
19 */
20 class UserGroupOptionList extends DatabaseObjectList
21 {
22 /**
23 * @inheritDoc
24 */
25 public $className = UserGroupOption::class;
26 }