ae36f05f4d9b9d2fa1a1597084069d69ac97dd29
[GitHub/WoltLab/WCF.git] /
1 <?php
2 namespace wcf\data\package\installation\plugin;
3 use wcf\data\AbstractDatabaseObjectAction;
4
5 /**
6 * Executes package installation plugin-related actions.
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 create()
16 * @method PackageInstallationPluginEditor[] getObjects()
17 * @method PackageInstallationPluginEditor getSingleObject()
18 */
19 class PackageInstallationPluginAction extends AbstractDatabaseObjectAction {
20 /**
21 * @inheritDoc
22 */
23 protected $className = PackageInstallationPluginEditor::class;
24 }