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