[更新]修正接口描述信息

This commit is contained in:
Anyon 2018-02-05 11:55:34 +08:00
parent f3f833cd9f
commit e0552c87dc
2 changed files with 3 additions and 3 deletions

View File

@ -17,7 +17,7 @@ namespace WeChat\Contracts;
use ArrayAccess;
/**
* Class Config
* Class DataArray
* @package WeChat
*/
class DataArray implements ArrayAccess

View File

@ -230,7 +230,7 @@ class Tools
curl_setopt($curl, CURLOPT_SSLCERTTYPE, 'PEM');
curl_setopt($curl, CURLOPT_SSLCERT, $options['ssl_cer']);
} else {
throw new InvalidArgumentException("Certificate files that do not exist. --- [{$options['ssl_cer']}]");
throw new InvalidArgumentException("Certificate files that do not exist. --- [ssl_cer]");
}
}
// 证书文件设置
@ -239,7 +239,7 @@ class Tools
curl_setopt($curl, CURLOPT_SSLKEYTYPE, 'PEM');
curl_setopt($curl, CURLOPT_SSLKEY, $options['ssl_key']);
} else {
throw new InvalidArgumentException("Certificate files that do not exist. --- [{$options['ssl_key']}]");
throw new InvalidArgumentException("Certificate files that do not exist. --- [ssl_key]");
}
}
curl_setopt($curl, CURLOPT_URL, $url);