mirror of
https://github.com/Neetpone/ponepaste.git
synced 2025-03-12 14:40:09 +01:00
27 lines
520 B
PHP
27 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();
|
|
}
|