Add suggestions

This commit is contained in:
Philipp Holzer 2021-08-25 13:59:37 +02:00
parent 7d251f092e
commit 12367648fa
No known key found for this signature in database
GPG Key ID: 9A28B7D4FF5667BD
2 changed files with 3 additions and 1 deletions

View File

@ -86,7 +86,7 @@ class HTTPClientFactory extends BaseFactory
RequestOptions::CONNECT_TIMEOUT => 10,
RequestOptions::TIMEOUT => $this->config->get('system', 'curl_timeout', 60),
// by default we will allow self-signed certs
// but you can override this
// but it can be overridden
RequestOptions::VERIFY => (bool)$this->config->get('system', 'verifyssl'),
RequestOptions::PROXY => $proxy,
RequestOptions::HEADERS => [

View File

@ -135,6 +135,8 @@ class HTTPClient implements IHTTPClient
case 'get':
case 'head':
case 'post':
case 'put':
case 'delete':
$response = $this->client->$method($url, $conf);
break;
default: