You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
551 B
21 lines
551 B
1 year ago
|
<?php
|
||
|
|
||
|
namespace Config;
|
||
|
|
||
|
use CodeIgniter\Config\BaseConfig;
|
||
|
|
||
|
class CURLRequest extends BaseConfig
|
||
|
{
|
||
|
/**
|
||
|
* --------------------------------------------------------------------------
|
||
|
* CURLRequest Share Options
|
||
|
* --------------------------------------------------------------------------
|
||
|
*
|
||
|
* Whether share options between requests or not.
|
||
|
*
|
||
|
* If true, all the options won't be reset between requests.
|
||
|
* It may cause an error request with unnecessary headers.
|
||
|
*/
|
||
|
public bool $shareOptions = false;
|
||
|
}
|