3
0
mirror of https://github.com/snipe/snipe-it.git synced 2026-02-05 15:15:43 +00:00
Files
snipe-it/app/Http/Middleware/PreventRequestsDuringMaintenance.php
2021-06-10 20:17:04 +00:00

18 lines
353 B
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
*/
protected $except = [
//
];
}