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`:
215
215
216
216
method | return | description
217
217
------ | ------ | -----------
218
- ` __get(string $property) ` | mixed |
218
+ ` __get(string $property) ` | mixed | calls ` $this->{'get_'.$property}($value) ` if such a method exists
219
219
` __set(string $property, $value) ` | void | calls ` $this->{'set_'.$property}($value) ` if such a method exists
220
220
` __isset(string $property) ` | bool |
221
221
` __unset(string $property) ` | void |
@@ -257,6 +257,12 @@ property | type | default | description
257
257
` $curl_options ` | array | ` [] ` | https://php.net/manual/function.curl-setopt.php
258
258
` $ca_info ` | string | ` null ` | https://curl.haxx.se/docs/caextract.html
259
259
` $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 | ` [] ` |
260
266
261
267
262
268
# Disclaimer
You can’t perform that action at this time.
0 commit comments