1
0
mirror of https://github.com/v2board/v2board.git synced 2025-01-31 10:39:15 +08:00
v2board/app/Http/Middleware/CheckForMaintenanceMode.php

18 lines
335 B
PHP
Raw Normal View History

2019-10-29 15:33:36 +08:00
<?php
namespace App\Http\Middleware;
use Illuminate\Foundation\Http\Middleware\CheckForMaintenanceMode as Middleware;
class CheckForMaintenanceMode extends Middleware
{
/**
* The URIs that should be reachable while maintenance mode is enabled.
*
* @var array
*/
protected $except = [
//
];
}