| 12345678910111213141516171819 |
- <?php
- namespace ModulesGarden\ProxmoxAddon\Core\Configuration\Addon;
- /**
- * Description of AbstractAfter
- *
- * @author Rafał Ossowski <rafal.os@modulesgarden.com>
- */
- abstract class AbstractAfter
- {
- public function __construct()
- {
-
- }
- abstract public function execute(array $params = []);
- }
|