説明なし
選択できるのは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. }