rename class

This commit is contained in:
Taylor Otwell
2020-07-14 15:57:11 -05:00
parent a14a1208ad
commit e471dd1cf0
2 changed files with 3 additions and 3 deletions

View File

@@ -0,0 +1,17 @@
<?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 = [
//
];
}