| 123456789101112131415161718192021222324252627282930 |
- <?php namespace App\Facades\Servers\Wechat;
- use Illuminate\Support\Facades\Facade;
- /**
- * 对象存储
- *
- * @method static \EasyWeChat\OpenWork\Application getApp() 获取应用实例
- * @method static \EasyWeChat\Work\Application getWork(string $authCorpId) 获取授权企企微实例
- * @method static string getPermanentCode(string $authCorpId) 通过授权方企微ID获取永久授权码
- * @method static array getAuthorization($authCorpId) 获取授权企业授权授权信息
- * @method static string getErrmsg($errcode) 获取错误信息
- *
- * @see \App\Servers\Wechat\OpenWork
- *
- */
- class OpenWork extends Facade
- {
- /**
- * Get the registered name of the component.
- *
- * @return string
- */
- protected static function getFacadeAccessor()
- {
- return '\App\Servers\Wechat\OpenWork';
- }
- }
- ?>
|