This repository was archived by the owner on Mar 23, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -215,7 +215,7 @@ inherited from `SettingsContainerInterface`:
215215
216216method | return | description
217217------ | ------ | -----------
218- ` __get(string $property) ` | mixed |
218+ ` __get(string $property) ` | mixed | calls ` $this->{'get_'.$property}($value) ` if such a method exists
219219` __set(string $property, $value) ` | void | calls ` $this->{'set_'.$property}($value) ` if such a method exists
220220` __isset(string $property) ` | bool |
221221` __unset(string $property) ` | void |
@@ -257,6 +257,12 @@ property | type | default | description
257257` $curl_options ` | array | ` [] ` | https://php.net/manual/function.curl-setopt.php
258258` $ca_info ` | string | ` null ` | https://curl.haxx.se/docs/caextract.html
259259` $ssl_verifypeer ` | bool | ` true ` | see CURLOPT_SSL_VERIFYPEER
260+ ` $curlHandle ` | string | ` CurlHandle::class ` |
261+ ` $windowSize ` | int | 5 |
262+ ` $sleep ` | int/float | ` null ` |
263+ ` $timeout ` | int | 10 |
264+ ` $retries ` | int | 3 |
265+ ` $curl_multi_options ` | array | ` [] ` |
260266
261267
262268# Disclaimer
You can’t perform that action at this time.
0 commit comments