From 29a2e994cd6dfd7e22e7f21f3c52b45992d0a81e Mon Sep 17 00:00:00 2001 From: Constantin Graf Date: Thu, 6 Aug 2026 17:06:34 +0200 Subject: [PATCH] Fixed phpstan error in TrustHosts middleware --- app/Http/Middleware/TrustHosts.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Http/Middleware/TrustHosts.php b/app/Http/Middleware/TrustHosts.php index 8ffa3a97..95680ad5 100644 --- a/app/Http/Middleware/TrustHosts.php +++ b/app/Http/Middleware/TrustHosts.php @@ -6,7 +6,7 @@ namespace App\Http\Middleware; use Illuminate\Http\Middleware\TrustHosts as BaseTrustHosts; use Illuminate\Http\Request; -use Symfony\Component\HttpFoundation\Response; +use Illuminate\Http\Response; /** * Rejects requests whose Host is not trusted, preventing Host-header poisoning of