6b2a7b8e73779a5e4eb0428f7f5103176bbec93a
[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 WoltLabSuite\Core\Data\Package\Installation\Plugin
12 *
13 * @method PackageInstallationPlugin create()
14 * @method PackageInstallationPluginEditor[] getObjects()
15 * @method PackageInstallationPluginEditor getSingleObject()
16 */
17 class PackageInstallationPluginAction extends AbstractDatabaseObjectAction {
18 /**
19 * @inheritDoc
20 */
21 protected $className = PackageInstallationPluginEditor::class;
22 }