Address.php 414 B

1234567891011121314151617181920212223242526272829303132
  1. <?php
  2. namespace addons\address;
  3. use think\Addons;
  4. /**
  5. * 地址选择
  6. * @author [MiniLing] <[laozheyouxiang@163.com]>
  7. */
  8. class Address extends Addons
  9. {
  10. /**
  11. * 插件安装方法
  12. * @return bool
  13. */
  14. public function install()
  15. {
  16. return true;
  17. }
  18. /**
  19. * 插件卸载方法
  20. * @return bool
  21. */
  22. public function uninstall()
  23. {
  24. return true;
  25. }
  26. }