Mini.php 748 B

12345678910111213141516171819202122232425262728293031
  1. <?php namespace App\Facades\Servers\WechatMini;
  2. use Illuminate\Support\Facades\Facade;
  3. /**
  4. * 对象存储
  5. *
  6. * @method static string getUrlLink($path,$query='') 获取UrlLink
  7. * @method static array getUserPhone($code) 手机号授权
  8. * @method static array jscode2session($code) 用户openid
  9. * @method static string getAccessToken() 获取AccessToken
  10. * @method static mixed queryUrlLink($urlLink) 查询加密UrlLink
  11. *
  12. *
  13. * @see \App\Servers\WechatMini\Mini
  14. *
  15. */
  16. class Mini extends Facade
  17. {
  18. /**
  19. * Get the registered name of the component.
  20. *
  21. * @return string
  22. */
  23. protected static function getFacadeAccessor()
  24. {
  25. return '\App\Servers\WechatMini\Mini';
  26. }
  27. }
  28. ?>