WxServiceFacade.php 763 B

1234567891011121314151617181920212223
  1. <?php
  2. namespace App\Facades;
  3. use Illuminate\Support\Facades\Facade;
  4. /**
  5. * @method static array getAccessToken();
  6. * @method static array getUserInfo(string $openid);
  7. * @method static array checkSignature(string $signature, string $echostr, string $timestamp, string $nonce);
  8. * @method static array getJsapiTicket();
  9. * @method static array getJsapiSign(string $url);
  10. * @method static array sendTplMsg(string $touser, string $templateId, string $jumpUrl, array $data);
  11. * @method static array sendMessage(string $toUser, string $msgType, array $msg);
  12. * @method static array createMenu(array $menu);
  13. *
  14. */
  15. class WxServiceFacade extends Facade
  16. {
  17. protected static function getFacadeAccessor(){
  18. return 'WxServiceFacadeRepository';
  19. }
  20. }