mirror of
https://github.com/Deathgarden-Rebirth/Deathgarden_Rebirth-Rewrite.git
synced 2026-09-08 03:06:03 -05:00
12 lines
223 B
PHP
12 lines
223 B
PHP
<?php
|
|
|
|
namespace App\Helper\AppHelper;
|
|
|
|
use Illuminate\Support\Facades\Storage;
|
|
|
|
class AppEnv
|
|
{
|
|
public static function isInMaintenanceMode(): bool {
|
|
return Storage::disk('local')->exists('.maintenance');
|
|
}
|
|
} |