1234567891011121314151617181920212223242526 |
- <?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()
- {
-
- }
- }
|