f3a79d6d4207ece8ef12cebadb0fa5da93ce6935
[GitHub/WoltLab/WCF.git] / wcfsetup / install / files / lib / data / core / object / CoreObject.class.php
1 <?php
2
3 namespace wcf\data\core\object;
4
5 use 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 */
18 class CoreObject extends DatabaseObject
19 {
20 }