8000 Remove default value · symfony/symfony@d00b5b5 · GitHub
[go: up one dir, main page]

Skip to content

Commit d00b5b5

Browse files
committed
Remove default value
1 parent d69b8bb commit d00b5b5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Symfony/Component/Console/Cursor.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,15 +95,15 @@ public function clearLine(bool $fromCurrentPosition = false)
9595
*/
9696
public function clearOutput()
9797
{
98-
$this->output->write("\x1b[0J", false);
98+
$this->output->write("\x1b[0J");
9999
}
100100

101101
/**
102102
* Clears the entire screen.
103103
*/
104104
public function clearScreen()
105105
{
106-
$this->output->write("\x1b[2J", false);
106+
$this->output->write("\x1b[2J");
107107
}
108108

109109
/**

0 commit comments

Comments
 (0)
0