Compare commits

...

2 commits
1.0.0 ... main

Author SHA1 Message Date
yggverse
597a105be7 update default options 2024-08-03 02:17:26 +03:00
yggverse
acad5e14cc fix query format 2024-07-08 04:36:04 +03:00

View file

@ -17,8 +17,10 @@ class Request
[ [
'ssl' => 'ssl' =>
[ [
'verify_peer' => false, 'allow_self_signed' => true,
'verify_peer_name' => false 'disable_compression' => true,
'verify_peer_name' => false,
'verify_peer' => false
] ]
]; ];
@ -184,7 +186,10 @@ class Request
$this->_host, $this->_host,
$this->_port, $this->_port,
$this->_path, $this->_path,
$this->_query ? sprintf(
'?%s',
$this->_query $this->_query
) : null
) )
); );