Skip to content

Commit f0d370d

Browse files
Merge branch '6.4' into 7.0
* 6.4: Fix deprecations on PHP 8.3 [WebProfilerBundle] Fix error in case of 'Content-Type' set null in dev environment with no debug [Messenger] Deprecate `StopWorkerOnSignalsListener` [Form] Remove duplicated attr option in FormType [Routing] Use vsprintf instead of sprintf + unpacking [DependencyInjection] Fix fetching lazy non-shared services multiple times with as files true
2 parents 9c6db4d + 0db802c commit f0d370d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Tests/RequestTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1897,7 +1897,7 @@ private function disableHttpMethodParameterOverride()
18971897
{
18981898
$class = new \ReflectionClass(Request::class);
18991899
$property = $class->getProperty('httpMethodParameterOverride');
1900-
$property->setValue(false);
1900+
$property->setValue(null, false);
19011901
}
19021902

19031903
private function getRequestInstanceForClientIpTests(string $remoteAddr, ?string $httpForwardedFor, ?array $trustedProxies): Request

0 commit comments

Comments
 (0)