Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
| Total | n/a |
0 / 0 |
n/a |
0 / 0 |
CRAP | n/a |
0 / 0 |
|||
| Optimize | n/a |
0 / 0 |
n/a |
0 / 0 |
0 | n/a |
0 / 0 |
|||
| 1 | <?php |
| 2 | |
| 3 | namespace Config; |
| 4 | |
| 5 | /** |
| 6 | * Optimization Configuration. |
| 7 | * |
| 8 | * NOTE: This class does not extend BaseConfig for performance reasons. |
| 9 | * So you cannot replace the property values with Environment Variables. |
| 10 | * |
| 11 | * WARNING: Do not use these options when running the app in the Worker Mode. |
| 12 | */ |
| 13 | class Optimize |
| 14 | { |
| 15 | /** |
| 16 | * -------------------------------------------------------------------------- |
| 17 | * Config Caching |
| 18 | * -------------------------------------------------------------------------- |
| 19 | * |
| 20 | * @see https://codeigniter.com/user_guide/concepts/factories.html#config-caching |
| 21 | */ |
| 22 | public bool $configCacheEnabled = false; |
| 23 | |
| 24 | /** |
| 25 | * -------------------------------------------------------------------------- |
| 26 | * Config Caching |
| 27 | * -------------------------------------------------------------------------- |
| 28 | * |
| 29 | * @see https://codeigniter.com/user_guide/concepts/autoloader.html#file-locator-caching |
| 30 | */ |
| 31 | public bool $locatorCacheEnabled = false; |
| 32 | } |