12345678910111213141516171819202122232425262728293031 |
- <?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
- * @method static mixed getUnlimit(string $scene, array $optional = []) 获取小程序码
- *
- *
- * @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';
- }
- }
- ?>
|