diskfloppy.me/app/Http/Middleware/PreventRequestsDuringMaintenance.php

16 lines
350 B
PHP
Raw Permalink Normal View History

2023-06-13 20:59:16 +00:00
<?php
namespace App\Http\Middleware;
use Illuminate\Foundation\Http\Middleware\PreventRequestsDuringMaintenance as Middleware;
class PreventRequestsDuringMaintenance extends Middleware
{
/**
* The URIs that should be reachable while maintenance mode is enabled.
*
* @var array<int, string>
*/
protected $except = [];
2023-06-13 20:59:16 +00:00
}