- CodeIgniter 4 framework setup with SQL Server database config - Models: Control, Test, Dept, Result, Daily/ Monthly entry models - Controllers: Dashboard, Control, Test, Dept, Entry, Report, API endpoints - Views: CRUD pages with modal dialogs, dashboard, reports - Database: Migrations for control test and daily/monthly result tables - Legacy v1 PHP application preserved in /v1 directory - Documentation: AGENTS.md, VIEWS_RULES.md for development guidelines
21 lines
551 B
PHP
21 lines
551 B
PHP
<?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;
|
|
}
|