优化代码

This commit is contained in:
yansongda 2017-08-11 16:58:23 +08:00
parent 41339b50ca
commit 1a6f9d3a7b

View File

@ -99,7 +99,7 @@ abstract class Alipay implements GatewayInterface
return $this->verify($data['alipay_trade_refund_response'], $data['sign'], true);
}
return $data;
return $data['alipay_trade_refund_response'];
}
/**
@ -120,7 +120,7 @@ abstract class Alipay implements GatewayInterface
return $this->verify($data['alipay_trade_close_response'], $data['sign'], true);
}
return $data;
return $data['alipay_trade_close_response'];
}
/**