Mini.php 683 B

123456789101112131415161718192021222324252627282930
  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 string getAccessToken() 获取AccessToken
  9. * @method static mixed queryUrlLink($urlLink) 查询加密UrlLink
  10. *
  11. *
  12. * @see \App\Servers\WechatMini\Mini
  13. *
  14. */
  15. class Mini extends Facade
  16. {
  17. /**
  18. * Get the registered name of the component.
  19. *
  20. * @return string
  21. */
  22. protected static function getFacadeAccessor()
  23. {
  24. return '\App\Servers\WechatMini\Mini';
  25. }
  26. }
  27. ?>