Update Trade.php

This commit is contained in:
Anyon 2020-03-12 09:51:56 +08:00
parent e3254d4e6c
commit f4ae17165a

View File

@ -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