Youzan.php 390 B

1234567891011121314151617181920
  1. <?php
  2. namespace app\common\facade;
  3. use think\Facade;
  4. /**
  5. * Class Token
  6. * @package app\common\facade
  7. * @method getToken() static 获取token的数据
  8. * @method getData(string $method,array $params=[],string $version='') static 获取数据
  9. *
  10. **/
  11. class Youzan extends Facade{
  12. protected static function getFacadeClass(): string
  13. {
  14. return 'app\common\Youzan';
  15. }
  16. }