UnInstall.php 881 B

123456789101112131415161718192021222324252627
  1. <?php
  2. // +---------------------------------------------------------------------+
  3. // | NiuCloud | [ WE CAN DO IT JUST NiuCloud ]  |
  4. // +---------------------------------------------------------------------+
  5. // | Copy right 2019-2029 www.niucloud.com  |
  6. // +---------------------------------------------------------------------+
  7. // | Author | NiuCloud <niucloud@outlook.com>  |
  8. // +---------------------------------------------------------------------+
  9. // | Repository | https://github.com/niucloud/framework.git  |
  10. // +---------------------------------------------------------------------+
  11. declare (strict_types = 1);
  12. namespace addon\wechatpay\event;
  13. /**
  14. * 应用卸载
  15. */
  16. class UnInstall
  17. {
  18. /**
  19. * 执行卸载
  20. */
  21. public function handle()
  22. {
  23. return success();
  24. }
  25. }