jonnybarnes.uk/app/Http/Middleware/PreventRequestsDuringMaintenance.php

18 lines
366 B
PHP
Raw Normal View History

2020-10-19 19:41:50 +01: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.
*
2023-02-18 09:34:57 +00:00
* @var array<int, string>
2020-10-19 19:41:50 +01:00
*/
protected $except = [
//
];
}