1
0
mirror of https://github.com/cp6/my-idlers.git synced 2024-09-29 11:47:09 +02:00
my-idlers/app/Http/Middleware/PreventRequestsDuringMaintenance.php

18 lines
353 B
PHP
Raw Normal View History

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