1234567891011121314151617181920212223 |
- <?php
- namespace App\Facades;
- use Illuminate\Support\Facades\Facade;
- /**
- * @method static array getAccessToken();
- * @method static array getUserInfo(string $openid);
- * @method static array checkSignature(string $signature, string $echostr, string $timestamp, string $nonce);
- * @method static array getJsapiTicket();
- * @method static array getJsapiSign(string $url);
- * @method static array sendTplMsg(string $touser, string $templateId, string $jumpUrl, array $data);
- * @method static array sendMessage(string $toUser, string $msgType, array $msg);
- * @method static array createMenu(array $menu);
- *
- */
- class WxServiceFacade extends Facade
- {
- protected static function getFacadeAccessor(){
- return 'WxServiceFacadeRepository';
- }
- }
|