Files
app
Console
Exceptions
Http
Controllers
Middleware
Authenticate.php
EncryptCookies.php
PreventRequestsDuringMaintenance.php
RedirectIfAuthenticated.php
TrimStrings.php
TrustHosts.php
TrustProxies.php
VerifyCsrfToken.php
Kernel.php
Models
Providers
Util
View
WebAuthn
bootstrap
config
database
public
resources
routes
storage
tests
.editorconfig
.env.example
.gitattributes
.gitignore
.styleci.yml
README.md
artisan
build.sh
composer.json
composer.lock
package.json
phpunit.xml
server.php
tailwind.config.js
webpack.mix.js
yarn.lock
lubo_comment_query/app/Http/Middleware/PreventRequestsDuringMaintenance.php
2022-07-09 18:09:08 +08:00

18 lines
366 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<int, string>
*/
protected $except = [
//
];
}