Skip to content

Commit 76dbaef

Browse files
committed
Fix ANSI class
1 parent 184493d commit 76dbaef

File tree

1 file changed

+2
-7
lines changed

1 file changed

+2
-7
lines changed

src/AnsiEscapeSequences.php

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -32,14 +32,9 @@ class AnsiEscapeSequences
3232
public const MOVE_CURSOR_DOWN_2 = "\033[2B";
3333

3434
/**
35-
* Erase to the end of the line on 2 lines
35+
* Erase to the end of the line
3636
*/
37-
public const ERASE_TO_LINE_END_1 = "\033[2A";
38-
39-
/**
40-
* Erase to the end of the line on 2 lines
41-
*/
42-
public const ERASE_TO_LINE_END_2 = "\033[2A";
37+
public const ERASE_TO_LINE_END = "\033[K";
4338

4439
/**
4540
* Clear the screen, move to (0,0)

0 commit comments

Comments
 (0)