Optimize.php 927 B

123456789101112131415161718192021222324252627282930
  1. <?php
  2. namespace Config;
  3. /**
  4. * Optimization Configuration.
  5. *
  6. * NOTE: This class does not extend BaseConfig for performance reasons.
  7. * So you cannot replace the property values with Environment Variables.
  8. */
  9. class Optimize
  10. {
  11. /**
  12. * --------------------------------------------------------------------------
  13. * Config Caching
  14. * --------------------------------------------------------------------------
  15. *
  16. * @see https://codeigniter.com/user_guide/concepts/factories.html#config-caching
  17. */
  18. public bool $configCacheEnabled = false;
  19. /**
  20. * --------------------------------------------------------------------------
  21. * Config Caching
  22. * --------------------------------------------------------------------------
  23. *
  24. * @see https://codeigniter.com/user_guide/concepts/autoloader.html#file-locator-caching
  25. */
  26. public bool $locatorCacheEnabled = false;
  27. }