fd35617c4ed128c23b936904c353a3ce9fe536cb
[GitHub/WoltLab/WCF.git] / wcfsetup / install / files / lib / data / devtools / project / DevtoolsProjectList.class.php
1 <?php
2
3 namespace wcf\data\devtools\project;
4
5 use wcf\data\DatabaseObjectList;
6
7 /**
8 * Represents a list of devtools projects.
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\Devtools\Project
14 * @since 3.1
15 *
16 * @method DevtoolsProject current()
17 * @method DevtoolsProject[] getObjects()
18 * @method DevtoolsProject|null getSingleObject()
19 * @method DevtoolsProject|null seach($objectID)
20 * @property DevtoolsProject[] $objects
21 */
22 class DevtoolsProjectList extends DatabaseObjectList
23 {
24 /**
25 * @inheritDoc
26 */
27 public $className = DevtoolsProject::class;
28 }