You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
944 B
32 lines
944 B
<?php |
|
|
|
namespace Config; |
|
|
|
/** |
|
* Optimization Configuration. |
|
* |
|
* NOTE: This class does not extend BaseConfig for performance reasons. |
|
* So you cannot replace the property values with Environment Variables. |
|
* |
|
* @immutable |
|
*/ |
|
class Optimize |
|
{ |
|
/** |
|
* -------------------------------------------------------------------------- |
|
* Config Caching |
|
* -------------------------------------------------------------------------- |
|
* |
|
* @see https://codeigniter.com/user_guide/concepts/factories.html#config-caching |
|
*/ |
|
public bool $configCacheEnabled = false; |
|
|
|
/** |
|
* -------------------------------------------------------------------------- |
|
* Config Caching |
|
* -------------------------------------------------------------------------- |
|
* |
|
* @see https://codeigniter.com/user_guide/concepts/autoloader.html#file-locator-caching |
|
*/ |
|
public bool $locatorCacheEnabled = false; |
|
}
|
|
|