Merge branch '3.1' into 5.2
[GitHub/WoltLab/WCF.git] / wcfsetup / install / files / lib / data / application / ApplicationList.class.php
1 <?php
2 namespace wcf\data\application;
3 use wcf\data\DatabaseObjectList;
4
5 /**
6 * Represents a list of applications.
7 *
8 * @author Alexander Ebert
9 * @copyright 2001-2019 WoltLab GmbH
10 * @license GNU Lesser General Public License <http://opensource.org/licenses/lgpl-license.php>
11 * @package WoltLabSuite\Core\Data\Application
12 *
13 * @method Application current()
14 * @method Application[] getObjects()
15 * @method Application|null search($objectID)
16 * @property Application[] $objects
17 */
18 class ApplicationList extends DatabaseObjectList {
19 /**
20 * @inheritDoc
21 */
22 public $className = Application::class;
23 }