8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d69b8bb commit d00b5b5Copy full SHA for d00b5b5
src/Symfony/Component/Console/Cursor.php
@@ -95,15 +95,15 @@ public function clearLine(bool $fromCurrentPosition = false)
95
*/
96
public function clearOutput()
97
{
98
- $this->output->write("\x1b[0J", false);
+ $this->output->write("\x1b[0J");
99
}
100
101
/**
102
* Clears the entire screen.
103
104
public function clearScreen()
105
106
- $this->output->write("\x1b[2J", false);
+ $this->output->write("\x1b[2J");
107
108
109
0 commit comments