Unify the terms 'Staff' and 'Team'
[GitHub/WoltLab/WCF.git] / wcfsetup / install / files / lib / data / core / object / CoreObject.class.php
... / ...
CommitLineData
1<?php
2
3namespace wcf\data\core\object;
4
5use wcf\data\DatabaseObject;
6
7/**
8 * Represents a core object.
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 *
14 * @property-read int $objectID unique id of the core object
15 * @property-read int $packageID id of the package which delivers the core object
16 * @property-read string $objectName PHP class name of the core object
17 */
18class CoreObject extends DatabaseObject
19{
20}