📋 Commit iniziale con: - ✅ Documentazione unificata in docs/ - ✅ Codice Laravel in netgescon-laravel/ - ✅ Script automazione in scripts/ - ✅ Configurazione sync rsync - ✅ Struttura organizzata e pulita 🔄 Versione: 2025.07.19-1644 🎯 Sistema pronto per Git distribuito
28 lines
520 B
PHP
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();
|
|
}
|