暂无描述
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

AppService.php 266B

12345678910111213141516171819202122
  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. }