mirror of
https://gitee.com/yansongda/pay.git
synced 2024-12-02 04:08:21 +08:00
parent
d56f0527d6
commit
cc8ad8cafa
@ -1,3 +1,9 @@
|
||||
## v3.1.6
|
||||
|
||||
### fixed
|
||||
|
||||
- fix: 微信注释中返回类型错误(#630)
|
||||
|
||||
## v3.1.5
|
||||
|
||||
### added
|
||||
|
@ -34,7 +34,7 @@ class FindRefundPlugin extends GeneralPlugin
|
||||
$config = get_wechat_config($rocket->getParams());
|
||||
$url = parent::getPartnerUri($rocket);
|
||||
|
||||
return $url.'?sub_mchid='.($rocket->getPayload()->get('sub_mchid', $config->get('sub_mch_id')));
|
||||
return $url.'?sub_mchid='.$rocket->getPayload()->get('sub_mchid', $config->get('sub_mch_id'));
|
||||
}
|
||||
|
||||
protected function getMethod(): string
|
||||
|
@ -21,11 +21,11 @@ use Yansongda\Supports\Collection;
|
||||
use Yansongda\Supports\Str;
|
||||
|
||||
/**
|
||||
* @method ResponseInterface app(array $order) APP 支付
|
||||
* @method Collection mini(array $order) 小程序支付
|
||||
* @method Collection mp(array $order) 公众号支付
|
||||
* @method Collection scan(array $order) 扫码支付
|
||||
* @method ResponseInterface wap(array $order) H5 支付
|
||||
* @method Collection app(array $order) APP 支付
|
||||
* @method Collection mini(array $order) 小程序支付
|
||||
* @method Collection mp(array $order) 公众号支付
|
||||
* @method Collection scan(array $order) 扫码支付
|
||||
* @method Collection wap(array $order) H5 支付
|
||||
*/
|
||||
class Wechat extends AbstractProvider
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user