Set default captcha type to none
[GitHub/WoltLab/WCF.git] / wcfsetup / install / files / lib / data / core / object / CoreObject.class.php
CommitLineData
11ade432 1<?php
a9229942 2
11ade432 3namespace wcf\data\core\object;
a9229942 4
11ade432
AE
5use wcf\data\DatabaseObject;
6
7/**
8 * Represents a core object.
a9229942
TD
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>
a9229942
TD
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
11ade432 17 */
a9229942
TD
18class CoreObject extends DatabaseObject
19{
20}