diff --git a/WePay/TransfersBank.php b/WePay/TransfersBank.php index fba82fd..f53aacb 100644 --- a/WePay/TransfersBank.php +++ b/WePay/TransfersBank.php @@ -53,7 +53,7 @@ class TransfersBank extends BasicPay if (!isset($options['amount'])) { throw new InvalidArgumentException('Missing Options -- [amount]'); } - isset($options['desc']) && $this->params['desc'] = $options['desc']; + isset($options['desc']) && $this->params->set('desc', $options['desc']); $this->params->offsetUnset('appid'); return $this->callPostApi('https://api.mch.weixin.qq.com/mmpaysptrans/pay_bank', [ 'amount' => $options['amount'],