Commit a21d9bb4 by 赵成彬(PHP)

update

1 parent 1f0aaaa5
Showing with 3 additions and 2 deletions
...@@ -43,7 +43,7 @@ class LTFNotify extends NotifyStrategy{ ...@@ -43,7 +43,7 @@ class LTFNotify extends NotifyStrategy{
if(count($params) < 1){//如果参数为空,则不进行处理 if(count($params) < 1){//如果参数为空,则不进行处理
return false; return false;
} }
debug("-----LTF__NOTIFY".json_encode($params),'info');
return $params; return $params;
// TODO: Implement getNotifyData() method. // TODO: Implement getNotifyData() method.
} }
...@@ -70,7 +70,8 @@ class LTFNotify extends NotifyStrategy{ ...@@ -70,7 +70,8 @@ class LTFNotify extends NotifyStrategy{
* @throws \Exception * @throws \Exception
*/ */
protected function verifySign(array $retData){ protected function verifySign(array $retData){
$retSign = $retData['sign']; $retSign = $retData['sign'];//先不验证加密
return true;
$data = ArrayUtil::removeKeys($retData, ['sign']); $data = ArrayUtil::removeKeys($retData, ['sign']);
$values = [ $values = [
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!