chore: update CodeIgniter to latest dev version after 4.1.6

This commit is contained in:
Yassine Doghri 2022-01-04 15:40:27 +00:00
commit 1fc3da139e
29 changed files with 276 additions and 336 deletions

View file

@ -0,0 +1,22 @@
<?php
declare(strict_types=1);
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 = true;
}