Before.php 428 B

12345678910111213141516171819202122
  1. <?php
  2. namespace ModulesGarden\ProxmoxAddon\App\Configuration\Addon\Config;
  3. /**
  4. * Description of Before
  5. *
  6. * @author Rafał Ossowski <rafal.os@modulesgarden.com>
  7. */
  8. class Before extends \ModulesGarden\ProxmoxAddon\Core\Configuration\Addon\Config\Before
  9. {
  10. /**
  11. * @return array
  12. */
  13. public function execute(array $params = [])
  14. {
  15. $return = parent::execute($params);
  16. return $return;
  17. }
  18. }