You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
266 B

1 year ago
  1. <?php
  2. declare (strict_types = 1);
  3. namespace app;
  4. use think\Service;
  5. /**
  6. * 应用服务类
  7. */
  8. class AppService extends Service
  9. {
  10. public function register()
  11. {
  12. // 服务注册
  13. }
  14. public function boot()
  15. {
  16. // 服务启动
  17. }
  18. }