Skip to content

Commit

Permalink
Fix deprecations on PHP 8.3
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolas-grekas committed Jul 19, 2023
1 parent 560fc3e commit b504a3d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Tests/TerminalTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
}

Expand Down

0 comments on commit b504a3d

Please sign in to comment.