代码功能更新

This commit is contained in:
root
2025-05-18 07:29:01 +00:00
commit 12b03531c5
2083 changed files with 695218 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
<?php
namespace app\service\api;
use think\Facade;
/**
* Api验证签名服务门面
* @package app\api\service
* @method static mixed setNoNeedCheckSign($noNeedCheckSign) 设置不需要验证签名的方法名数组
* @method static mixed getNoNeedCheckSign() 获取无需验证签名的方法名数组
* @method static mixed needCheckSign() 获取当前节点是否需要验证签名
* @method static mixed check() 验证签名
* @method static mixed getError() 获取错误信息
*/
class CheckSignServiceFacade extends Facade
{
protected static function getFacadeClass()
{
return CheckSign::class;
}
}