Skip to content

Commit b504a3d

Browse files
Fix deprecations on PHP 8.3
1 parent 560fc3e commit b504a3d

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
foreach (['height', 'width', 'stty'] as $name) {
4242
$property = new \ReflectionProperty(Terminal::class, $name);
4343
$property->setAccessible(true);
44-
$property->setValue(null);
44+
$property->setValue(null, null);
4545
}
4646
}
4747

0 commit comments

Comments
 (0)