HelloCSE/app/Http/Middleware/PreventRequestsDuringMaintenance.php
2024-04-10 13:56:22 +02:00

17 lignes
366 o
PHP

<?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 = [
//
];
}