1 | <?php |
||
2 | |||
3 | declare(strict_types=1); |
||
0 ignored issues
–
show
Coding Style
introduced
by
![]() |
|||
4 | // 02.03.23 |
||
5 | namespace AlecRabbit\WCWidth\Kernel\Contract; |
||
6 | |||
7 | /** @internal */ |
||
8 | interface IUnicodeVersion |
||
9 | { |
||
10 | public static function set(string $version): void; |
||
11 | |||
12 | public static function get(): ?string; |
||
13 | |||
14 | public static function reset(): void; |
||
15 | |||
16 | public static function refine(?string $version): string; |
||
17 | |||
18 | public static function latest(): string; |
||
19 | } |