diff --git a/phpstan-baseline.neon b/phpstan-baseline.neon
index 7f59f3b6c0..ec19fe65cd 100644
--- a/phpstan-baseline.neon
+++ b/phpstan-baseline.neon
@@ -38155,6 +38155,11 @@ parameters:
count: 2
path: libraries/classes/Utils/HttpRequest.php
+ -
+ message: "#^Cannot access offset 0 on mixed\\.$#"
+ count: 1
+ path: libraries/classes/Utils/HttpRequest.php
+
-
message: "#^Method PhpMyAdmin\\\\Utils\\\\HttpRequest\\:\\:handleContext\\(\\) has parameter \\$context with no value type specified in iterable type array\\.$#"
count: 1
@@ -38190,6 +38195,11 @@ parameters:
count: 1
path: libraries/classes/Utils/HttpRequest.php
+ -
+ message: "#^Parameter \\#2 \\$subject of function preg_match expects string, mixed given\\.$#"
+ count: 1
+ path: libraries/classes/Utils/HttpRequest.php
+
-
message: "#^Property PhpMyAdmin\\\\Utils\\\\HttpRequest\\:\\:\\$proxyPass \\(string\\) does not accept mixed\\.$#"
count: 1
@@ -38205,11 +38215,6 @@ parameters:
count: 1
path: libraries/classes/Utils/HttpRequest.php
- -
- message: "#^Variable \\$http_response_header in isset\\(\\) always exists and is not nullable\\.$#"
- count: 1
- path: libraries/classes/Utils/HttpRequest.php
-
-
message: "#^Cannot access offset 'Server' on mixed\\.$#"
count: 1
diff --git a/psalm-baseline.xml b/psalm-baseline.xml
index a459f3f668..3c41f5e434 100644
--- a/psalm-baseline.xml
+++ b/psalm-baseline.xml
@@ -14485,9 +14485,10 @@
$httpStatus
-
+
$context['http']['content']
$httpStatus
+ $http_response_header
string|bool|null
diff --git a/test/classes/Controllers/Table/Structure/MoveColumnsControllerTest.php b/test/classes/Controllers/Table/Structure/MoveColumnsControllerTest.php
index 15ad5e2e02..a267ffea76 100644
--- a/test/classes/Controllers/Table/Structure/MoveColumnsControllerTest.php
+++ b/test/classes/Controllers/Table/Structure/MoveColumnsControllerTest.php
@@ -167,6 +167,7 @@ SQL
ALTER TABLE `test_table`
CHANGE `note` `note` varchar(100) DEFAULT NULL AFTER `id`
SQL
+,
],
];
}