From b504a3d266ad2bb632f196c0936ef2af5ff6e273 Mon Sep 17 00:00:00 2001 From: Nicolas Grekas Date: Wed, 19 Jul 2023 22:11:33 +0200 Subject: [PATCH] Fix deprecations on PHP 8.3 --- Tests/TerminalTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tests/TerminalTest.php b/Tests/TerminalTest.php index 34d32b08e..08b0df7cd 100644 --- a/Tests/TerminalTest.php +++ b/Tests/TerminalTest.php @@ -41,7 +41,7 @@ private function resetStatics() foreach (['height', 'width', 'stty'] as $name) { $property = new \ReflectionProperty(Terminal::class, $name); $property->setAccessible(true); - $property->setValue(null); + $property->setValue(null, null); } }