123456789101112131415161718192021222324252627282930 |
- <?php namespace App\Facades\Servers\WechatMini;
- use Illuminate\Support\Facades\Facade;
- /**
- * 对象存储
- *
- * @method static string getUrlLink($path,$query='') 获取UrlLink
- * @method static array getUserPhone($code) 手机号授权
- * @method static string getAccessToken() 获取AccessToken
- * @method static mixed queryUrlLink($urlLink) 查询加密UrlLink
- *
- *
- * @see \App\Servers\WechatMini\Mini
- *
- */
- class Mini extends Facade
- {
- /**
- * Get the registered name of the component.
- *
- * @return string
- */
- protected static function getFacadeAccessor()
- {
- return '\App\Servers\WechatMini\Mini';
- }
- }
- ?>
|