| 12345678910111213141516171819202122232425262728293031 |
- <?php namespace App\Facades\Servers\Wechat;
- use Illuminate\Support\Facades\Facade;
- /**
- * 对象存储
- *
- * @method static \EasyWeChat\OfficialAccount\Application getApp() 公众号
- * @method static array userFromCode($code) 获取用户授权信息
- * @method static array getJssdkConfig($url='') 获取JSSDK的配置数组
- * @method static array sendSubscription($params) 发送一次性订阅消息
- * @method static array send($params) 发送模板消息
- *
- *
- * @see \App\Servers\Wechat\Official
- *
- */
- class Official extends Facade
- {
- /**
- * Get the registered name of the component.
- *
- * @return string
- */
- protected static function getFacadeAccessor()
- {
- return '\App\Servers\Wechat\Official';
- }
- }
- ?>
|