123456789101112131415161718192021222324 |
- <?php
- declare (strict_types = 1);
- namespace app;
- use library\utils\Json;
- use think\Service;
- /**
- * 应用服务类
- */
- class AppService extends Service
- {
- public function register()
- {
- // 服务注册
- $this->app->bind('json', Json::class);
- }
- public function boot()
- {
- // 服务启动
- }
- }
|