Merge branch '3.0'
[GitHub/WoltLab/WCF.git] / wcfsetup / install / files / lib / data / core / object / CoreObject.class.php
CommitLineData
11ade432
AE
1<?php
2namespace wcf\data\core\object;
3use wcf\data\DatabaseObject;
4
5/**
6 * Represents a core object.
7 *
8 * @author Alexander Ebert
c839bd49 9 * @copyright 2001-2018 WoltLab GmbH
11ade432 10 * @license GNU Lesser General Public License <http://opensource.org/licenses/lgpl-license.php>
e71525e4 11 * @package WoltLabSuite\Core\Data\Core\Object
e9335ed9 12 *
ed6a4e42
MS
13 * @property-read integer $objectID unique id of the core object
14 * @property-read integer $packageID id of the package which delivers the core object
15 * @property-read string $objectName PHP class name of the core object
11ade432 16 */
b4207e71 17class CoreObject extends DatabaseObject {}