Account.php 330 B

123456789101112131415161718192021222324252627
  1. <?php
  2. declare (strict_types = 1);
  3. namespace app\service;
  4. class Account extends \think\Service
  5. {
  6. /**
  7. * 注册服务
  8. *
  9. * @return mixed
  10. */
  11. public function register()
  12. {
  13. //
  14. }
  15. /**
  16. * 执行服务
  17. *
  18. * @return mixed
  19. */
  20. public function boot()
  21. {
  22. //
  23. }
  24. }