Files
newznab-tmux-NNTmux/app/Http/Middleware/CheckForMaintenanceMode.php
T
2026-02-26 14:26:07 +01:00

20 lines
374 B
PHP

<?php
declare(strict_types=1);
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<int, string>
*/
protected $except = [
//
];
}