fb1234e86536b0dec0537b1aa3d5bf4e81061fd6
[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 static PackageInstallationPlugin create(array $parameters = [])
14 * @method PackageInstallationPlugin getDecoratedObject()
15 * @mixin PackageInstallationPlugin
16 */
17 class PackageInstallationPluginEditor extends DatabaseObjectEditor {
18 /**
19 * @inheritDoc
20 */
21 protected static $baseClass = PackageInstallationPlugin::class;
22 }