AbstractAfter.php 323 B

123456789101112131415161718
  1. <?php
  2. namespace ModulesGarden\Servers\ProxmoxVps\Core\Configuration\Addon;
  3. /**
  4. * Description of AbstractAfter
  5. *
  6. * @author Rafał Ossowski <rafal.os@modulesgarden.com>
  7. */
  8. abstract class AbstractAfter
  9. {
  10. public function __construct()
  11. {
  12. }
  13. abstract public function execute(array $params = []);
  14. }