mirror of
https://gitee.com/zoujingli/WeChatDeveloper.git
synced 2025-04-05 19:41:44 +08:00
[更新]修正证书目录判断
This commit is contained in:
parent
011e460872
commit
e72fb2f166
@ -299,13 +299,13 @@ class Pay
|
||||
{
|
||||
$option = [];
|
||||
if ($isCert) {
|
||||
$option['ssl_cer'] = $this->config->get('ssl_cer');
|
||||
$option['ssl_key'] = $this->config->get('ssl_key');
|
||||
foreach (['ssl_cer', 'ssl_key'] as $key) {
|
||||
if (empty($option[$key])) {
|
||||
if (empty($option[$key]) || !file_exists($option[$key])) {
|
||||
throw new InvalidArgumentException("Missing Config -- [{$key}]", '0');
|
||||
}
|
||||
}
|
||||
$option['ssl_cer'] = $this->config->get('ssl_cer');
|
||||
$option['ssl_key'] = $this->config->get('ssl_key');
|
||||
}
|
||||
$params = $this->params->merge($data);
|
||||
$needSignType && ($params['sign_type'] = strtoupper($signType));
|
||||
|
Loading…
x
Reference in New Issue
Block a user