AppService.php 1003 B

123456789101112131415161718192021222324252627282930313233343536
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | 萤火商城系统 [ 致力于通过产品和服务,帮助商家高效化开拓市场 ]
  4. // +----------------------------------------------------------------------
  5. // | Copyright (c) 2017~2021 https://www.yiovo.com All rights reserved.
  6. // +----------------------------------------------------------------------
  7. // | Licensed 这不是一个自由软件,不允许对程序代码以任何形式任何目的的再发行
  8. // +----------------------------------------------------------------------
  9. // | Author: 萤火科技 <admin@yiovo.com>
  10. // +----------------------------------------------------------------------
  11. declare (strict_types=1);
  12. namespace cores;
  13. use think\Service;
  14. use think\facade\Log;
  15. use think\facade\Request;
  16. /**
  17. * 应用服务类
  18. */
  19. class AppService extends Service
  20. {
  21. // 服务注册
  22. public function register()
  23. {
  24. }
  25. // 服务启动
  26. public function boot()
  27. {
  28. }
  29. }