f77b11ea16b7b05e8a67aba4a1e984335e483c25
[GitHub/WoltLab/WCF.git] /
1 <?php
2 namespace wcf\data\package\installation\plugin;
3 use wcf\data\DatabaseObjectEditor;
4
5 /**
6 * Provides functions to edit package installation plugins.
7 *
8 * @author Alexander Ebert
9 * @copyright 2001-2016 WoltLab GmbH
10 * @license GNU Lesser General Public License <http://opensource.org/licenses/lgpl-license.php>
11 * @package com.woltlab.wcf
12 * @subpackage data.package.installation.plugin
13 * @category Community Framework
14 *
15 * @method PackageInstallationPlugin getDecoratedObject()
16 * @mixin PackageInstallationPlugin
17 */
18 class PackageInstallationPluginEditor extends DatabaseObjectEditor {
19 /**
20 * @inheritDoc
21 */
22 protected static $baseClass = PackageInstallationPlugin::class;
23 }