| 123456789101112131415161718192021 |
- <?php
- namespace ModulesGarden\ProxmoxAddon\App\Configuration\Addon\Update;
- /**
- * Description of After
- *
- * @author Rafał Ossowski <rafal.os@modulesgarden.com>
- */
- class After extends \ModulesGarden\ProxmoxAddon\Core\Configuration\Addon\Update\After
- {
- /**
- * @return array
- */
- public function execute(array $params = [])
- {
- $return = parent::execute($params);
- return $return;
- }
- }
|