📋 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
36 lines
715 B
PHP
36 lines
715 B
PHP
<?php
|
|
|
|
namespace Illuminate\Contracts\Foundation;
|
|
|
|
interface MaintenanceMode
|
|
{
|
|
/**
|
|
* Take the application down for maintenance.
|
|
*
|
|
* @param array $payload
|
|
* @return void
|
|
*/
|
|
public function activate(array $payload): void;
|
|
|
|
/**
|
|
* Take the application out of maintenance.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function deactivate(): void;
|
|
|
|
/**
|
|
* Determine if the application is currently down for maintenance.
|
|
*
|
|
* @return bool
|
|
*/
|
|
public function active(): bool;
|
|
|
|
/**
|
|
* Get the data array which was provided when the application was placed into maintenance.
|
|
*
|
|
* @return array
|
|
*/
|
|
public function data(): array;
|
|
}
|