AppService.php 302 B

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