mirror of
https://github.com/opensourcepos/opensourcepos.git
synced 2026-01-02 14:37:55 -05:00
- CodeIgniter 4.5.1 - PSR/Log 3.0.0 - PHP >= 8.1 - Replaced mandatory files. - Modified breaking change code. - Modified updated code. - Added missing files. Signed-off-by: objecttothis <objecttothis@gmail.com>
30 lines
724 B
PHP
30 lines
724 B
PHP
<?php
|
|
|
|
namespace Config;
|
|
|
|
use CodeIgniter\Config\BaseConfig;
|
|
|
|
/**
|
|
* Enable/disable backward compatibility breaking features.
|
|
*/
|
|
class Feature extends BaseConfig
|
|
{
|
|
/**
|
|
* Use improved new auto routing instead of the default legacy version.
|
|
*/
|
|
public bool $autoRoutesImproved = true;
|
|
|
|
/**
|
|
* Use filter execution order in 4.4 or before.
|
|
*/
|
|
public bool $oldFilterOrder = false;
|
|
|
|
/**
|
|
* The behavior of `limit(0)` in Query Builder.
|
|
*
|
|
* If true, `limit(0)` returns all records. (the behavior of 4.4.x or before in version 4.x.)
|
|
* If false, `limit(0)` returns no records. (the behavior of 3.1.9 or later in version 3.x.)
|
|
*/
|
|
public bool $limitZeroAsAll = true;
|
|
}
|