WxDecryptFacade.php 606 B

12345678910111213141516171819202122
  1. <?php
  2. namespace App\Facades;
  3. use Illuminate\Support\Facades\Facade;
  4. /**
  5. * @method static array xmlToArray($xml);
  6. * @method static array arrayToXml(array $config);
  7. * @method static array getSHA1($timestamp, $nonce, $encrypt_msg);
  8. * @method static array sendWxHttp($url, $content);
  9. * @method static array decryptMsg($array, $msgSignature, $timestamp = null, $nonce);
  10. * @method static array decrypt($encrypted);
  11. * @method static array decode($text);
  12. *
  13. */
  14. class WxDecryptFacade extends Facade
  15. {
  16. protected static function getFacadeAccessor(){
  17. return 'WxDecryptFacadeRepository';
  18. }
  19. }