Total Complexity | 3 |
Total Lines | 15 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php declare(strict_types=1); |
||
7 | class Symbol |
||
8 | { |
||
9 | 1 | public static function insert(int $count = 1): string |
|
10 | { |
||
11 | 1 | return CSI . "{$count}@"; |
|
12 | } |
||
13 | |||
14 | 1 | public static function delete(int $count = 1): string |
|
15 | { |
||
16 | 1 | return CSI . "{$count}P"; |
|
17 | } |
||
18 | |||
19 | 1 | public static function replaceWithSpace(int $count = 1): string |
|
22 | } |
||
23 | } |
||
24 |