细节优化

This commit is contained in:
Devil
2021-02-15 22:45:33 +08:00
parent 4312467a5c
commit 0df1ae196d
51 changed files with 1420 additions and 512 deletions

View File

@ -34,13 +34,14 @@ class OrderNotify extends Common
// 调用父类前置方法
parent::__construct();
}
/**
* [Notify 支付异步处理]
* @author Devil
* @blog http://gong.gg/
* @version 1.0.0
* @datetime 2018-03-04T14:35:38+0800
* 支付异步处理
* @author Devil
* @blog http://gong.gg/
* @version 1.0.0
* @date 2019-09-12
* @desc description
*/
public function Notify()
{
@ -111,7 +112,7 @@ class OrderNotify extends Common
$payment_obj = new $payment();
if(method_exists($payment_obj, $action))
{
return $payment_obj->$action();
return $payment_obj->$action($this->data_request);
}
}
return '';