12345678910111213141516171819 |
- <?php
- namespace app\service\api;
- use think\Facade;
- /**
- * Api用户服务门面
- * @package plugin\core\service
- * @method static mixed init($token) 初始化
- * @method static mixed getError() 获取错误信息
- */
- class MpServiceFacade extends Facade
- {
- protected static function getFacadeClass()
- {
- return Mp::class;
- }
- }
|