This commit is contained in:
2026-05-01 23:40:14 +08:00
commit b8f599a617
3867 changed files with 478663 additions and 0 deletions
+29
View File
@@ -0,0 +1,29 @@
<?php
namespace Illuminate\Support\Facades;
use Illuminate\Foundation\MaintenanceModeManager;
/**
* @method static string getDefaultDriver()
* @method static mixed driver(\UnitEnum|string|null $driver = null)
* @method static \Illuminate\Foundation\MaintenanceModeManager extend(string $driver, \Closure $callback)
* @method static array getDrivers()
* @method static \Illuminate\Contracts\Container\Container getContainer()
* @method static \Illuminate\Foundation\MaintenanceModeManager setContainer(\Illuminate\Contracts\Container\Container $container)
* @method static \Illuminate\Foundation\MaintenanceModeManager forgetDrivers()
*
* @see \Illuminate\Foundation\MaintenanceModeManager
*/
class MaintenanceMode extends Facade
{
/**
* Get the registered name of the component.
*
* @return string
*/
protected static function getFacadeAccessor()
{
return MaintenanceModeManager::class;
}
}