UpgradeInterface.php 366 B

123456789101112131415161718192021
  1. <?php
  2. /*
  3. * FecShop file.
  4. *
  5. * @link http://www.fecshop.com/
  6. * @copyright Copyright (c) 2016 FecShop Software LLC
  7. * @license http://www.fecshop.com/license/
  8. */
  9. namespace fecshop\services\extension;
  10. /**
  11. * Product services interface.
  12. * @author Terry Zhao <2358269014@qq.com>
  13. * @since 1.0
  14. */
  15. interface UpgradeInterface
  16. {
  17. public function run($version);
  18. }