sdwebserver/app/Config/CURLRequest.php

21 lines
551 B
PHP
Raw Normal View History

2022-03-14 19:13:10 +01:00
<?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.
*/
2024-04-07 22:17:30 +02:00
public bool $shareOptions = false;
2022-03-14 19:13:10 +01:00
}