crm-summit/app/Config/CURLRequest.php

21 lines
551 B
PHP
Raw Permalink Normal View History

2024-04-24 13:20:52 +07: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.
*/
2025-08-15 11:38:41 +07:00
public bool $shareOptions = false;
2024-04-24 13:20:52 +07:00
}