CachesConfiguration.php 520 B

123456789101112131415161718192021222324252627
  1. <?php
  2. namespace Illuminate\Contracts\Foundation;
  3. interface CachesConfiguration
  4. {
  5. /**
  6. * Determine if the application configuration is cached.
  7. *
  8. * @return bool
  9. */
  10. public function configurationIsCached();
  11. /**
  12. * Get the path to the configuration cache file.
  13. *
  14. * @return string
  15. */
  16. public function getCachedConfigPath();
  17. /**
  18. * Get the path to the cached services.php file.
  19. *
  20. * @return string
  21. */
  22. public function getCachedServicesPath();
  23. }