mirror of https://github.com/itflow-org/itflow
19 lines
340 B
PHP
19 lines
340 B
PHP
<?php
|
|
|
|
namespace Illuminate\Support\Facades;
|
|
|
|
use Illuminate\Foundation\MaintenanceModeManager;
|
|
|
|
class MaintenanceMode extends Facade
|
|
{
|
|
/**
|
|
* Get the registered name of the component.
|
|
*
|
|
* @return string
|
|
*/
|
|
protected static function getFacadeAccessor()
|
|
{
|
|
return MaintenanceModeManager::class;
|
|
}
|
|
}
|