Files
pancake/system/vendor/illuminate/contracts/Foundation/CachesConfiguration.php
Tim Bendt 6b9ef7ca55 first
2025-11-25 00:16:35 -05:00

28 lines
520 B
PHP
Executable File

<?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();
}