Add suggestions

pull/10633/head
Philipp 2021-08-25 13:59:37 +02:00
rodzic 7d251f092e
commit 12367648fa
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 9A28B7D4FF5667BD
2 zmienionych plików z 3 dodań i 1 usunięć

Wyświetl plik

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

Wyświetl plik

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