[更新]修正证书目录判断

This commit is contained in:
Anyon 2018-05-09 13:38:00 +08:00
parent 011e460872
commit e72fb2f166

View File

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