mirror of
https://github.com/pacnpal/thrillwiki_laravel.git
synced 2025-12-20 08:31:09 -05:00
12 lines
235 B
PHP
12 lines
235 B
PHP
<?php
|
|
|
|
namespace App\Http\Middleware;
|
|
|
|
use Illuminate\Foundation\Http\Middleware\PreventRequestsDuringMaintenance as Middleware;
|
|
|
|
class PreventRequestsDuringMaintenance extends Middleware
|
|
{
|
|
protected $except = [
|
|
//
|
|
];
|
|
} |