mirror of
https://gitee.com/zoujingli/WeChatDeveloper.git
synced 2025-04-05 19:41:44 +08:00
Update Trade.php
This commit is contained in:
parent
e3254d4e6c
commit
f4ae17165a
@ -44,6 +44,28 @@ class Trade extends BasicAliPay
|
|||||||
return $this->options->get('method');
|
return $this->options->get('method');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 设置接口公共参数
|
||||||
|
* @param array $option
|
||||||
|
* @return Trade
|
||||||
|
*/
|
||||||
|
public function setOption($option = [])
|
||||||
|
{
|
||||||
|
foreach ($option as $key => $vo) {
|
||||||
|
$this->options->set($key, $vo);
|
||||||
|
}
|
||||||
|
return $this;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 获取接口公共参数
|
||||||
|
* @return array|string|null
|
||||||
|
*/
|
||||||
|
public function getOption()
|
||||||
|
{
|
||||||
|
return $this->options->get();
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 执行通过接口
|
* 执行通过接口
|
||||||
* @param array $options
|
* @param array $options
|
||||||
|
Loading…
x
Reference in New Issue
Block a user