2FAuth/app/Http/Middleware/PreventRequestsDuringMaintenance.php

18 lines
366 B
PHP
Raw Normal View History

2019-05-20 07:37:41 +02:00
<?php
namespace App\Http\Middleware;
2021-12-02 13:15:53 +01:00
use Illuminate\Foundation\Http\Middleware\PreventRequestsDuringMaintenance as Middleware;
2019-05-20 07:37:41 +02:00
2021-12-02 13:15:53 +01:00
class PreventRequestsDuringMaintenance extends Middleware
2019-05-20 07:37:41 +02:00
{
/**
* The URIs that should be reachable while maintenance mode is enabled.
*
2023-03-26 23:04:06 +02:00
* @var array<int, string>
2019-05-20 07:37:41 +02:00
*/
protected $except = [
//
];
2022-11-22 15:15:52 +01:00
}