1234567891011121314151617181920 |
- <?php
- namespace app\common\facade;
- use think\Facade;
- /**
- * Class Token
- * @package app\common\facade
- * @method getToken() static 获取token的数据
- * @method getData(string $method,array $params=[],string $version='') static 获取数据
- *
- **/
- class Youzan extends Facade{
- protected static function getFacadeClass(): string
- {
- return 'app\common\Youzan';
- }
- }
|