UnInstall.php 850 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. namespace addon\stock\event;
  12. /**
  13. * 应用卸载
  14. */
  15. class UnInstall
  16. {
  17. /**
  18. * 执行卸载
  19. */
  20. public function handle()
  21. {
  22. return success();
  23. }
  24. }