Skip to content

Commit aa5d64a

Browse files
Merge branch '6.2' into 6.3
* 6.2: Fix deprecations on PHP 8.3 [WebProfilerBundle] Fix error in case of 'Content-Type' set null in dev environment with no debug [Routing] Use vsprintf instead of sprintf + unpacking
2 parents 9cdc0f4 + e30dfbc commit aa5d64a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Tests/TerminalTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ private function resetStatics()
4141
{
4242
foreach (['height', 'width', 'stty'] as $name) {
4343
$property = new \ReflectionProperty(Terminal::class, $name);
44-
$property->setValue(null);
44+
$property->setValue(null, null);
4545
}
4646
}
4747

0 commit comments

Comments
 (0)