7634479390d6d4abc538d1b310aefe56c777c73c
[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 WoltLabSuite\Core\Data\Package\Installation\Plugin
12 *
13 * @method PackageInstallationPlugin getDecoratedObject()
14 * @mixin PackageInstallationPlugin
15 */
16 class PackageInstallationPluginEditor extends DatabaseObjectEditor {
17 /**
18 * @inheritDoc
19 */
20 protected static $baseClass = PackageInstallationPlugin::class;
21 }