36896-vm/vendor/illuminate/contracts/Foundation/CachesConfiguration.php
Flatlogic Bot 48cd368984 cloud
2025-12-12 17:05:57 +00:00

28 lines
520 B
PHP

<?php
namespace Illuminate\Contracts\Foundation;
interface CachesConfiguration
{
/**
* Determine if the application configuration is cached.
*
* @return bool
*/
public function configurationIsCached();
/**
* Get the path to the configuration cache file.
*
* @return string
*/
public function getCachedConfigPath();
/**
* Get the path to the cached services.php file.
*
* @return string
*/
public function getCachedServicesPath();
}