Total Complexity | 3 |
Total Lines | 12 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 0 |
1 | <?php declare(strict_types=1); |
||
7 | class Symbol |
||
8 | { |
||
9 | public static function insert(int $num = 1): string { |
||
10 | return ESC . "[{$num}@"; |
||
11 | } |
||
12 | |||
13 | public static function delete(int $num = 1): string { |
||
14 | return ESC . "[{$num}P"; |
||
15 | } |
||
16 | |||
17 | public static function replaceWithSpace(int $num = 1): string { |
||
19 | } |
||
20 | } |
||
21 |