AppService.php 237 B

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