12345678910111213141516171819202122 |
- <?php
- namespace App\Facades;
- use Illuminate\Support\Facades\Facade;
- /**
- * @method static array xmlToArray($xml);
- * @method static array arrayToXml(array $config);
- * @method static array getSHA1($timestamp, $nonce, $encrypt_msg);
- * @method static array sendWxHttp($url, $content);
- * @method static array decryptMsg($array, $msgSignature, $timestamp = null, $nonce);
- * @method static array decrypt($encrypted);
- * @method static array decode($text);
- *
- */
- class WxDecryptFacade extends Facade
- {
- protected static function getFacadeAccessor(){
- return 'WxDecryptFacadeRepository';
- }
- }
|