123456789101112131415161718192021222324252627 |
- <?php
- declare (strict_types = 1);
- namespace app\service;
- class Account extends \think\Service
- {
- /**
- * 注册服务
- *
- * @return mixed
- */
- public function register()
- {
- //
- }
- /**
- * 执行服务
- *
- * @return mixed
- */
- public function boot()
- {
- //
- }
- }
|