diff --git a/phpunit.xml b/phpunit.xml index 11f9da2..867ca32 100644 --- a/phpunit.xml +++ b/phpunit.xml @@ -1,34 +1,16 @@ - - - - - + + + diff --git a/routes/middleware.php b/routes/middleware.php index 2ac8e5b..e40fb12 100644 --- a/routes/middleware.php +++ b/routes/middleware.php @@ -10,21 +10,15 @@ declare(strict_types=1); -use Lion\Bundle\Middleware\HttpsMiddleware; use Lion\Bundle\Middleware\RouteMiddleware; use Lion\Bundle\Support\Http\Routes; Routes::setMiddleware([ /** - * [Protects the route which provides the list of available routes] + * Protects the route which provides the list of available routes. */ 'protect-route-list' => RouteMiddleware::class, - /** - * [Filters that request via HTTPS] - */ - 'https' => HttpsMiddleware::class, - ]);