zlibproxy/vendor/illuminate/contracts/Foundation/CachesConfiguration.php

28 lines
520 B
PHP
Raw Normal View History

2023-01-02 12:56:44 +01:00
<?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();
}