Before.php 415 B

12345678910111213141516171819202122
  1. <?php
  2. namespace ThurData\Servers\KerioEmail\App\Configuration\Addon\Update;
  3. /**
  4. * runs before module update actions
  5. *
  6. * @autor ThurData <info@thurdata.ch>
  7. */
  8. class Before extends \ThurData\Servers\KerioEmail\Core\Configuration\Addon\Update\Before
  9. {
  10. /**
  11. * @return array
  12. */
  13. public function execute($version)
  14. {
  15. $return = parent::execute($version);
  16. return $return;
  17. }
  18. }