Total Complexity | 5 |
Total Lines | 30 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
7 | class CellFont |
||
8 | { |
||
9 | 112 | public static function escapement(Font $font, int $escapement): void |
|
10 | { |
||
11 | switch ($escapement) { |
||
12 | 112 | case 0x0001: |
|
13 | 1 | $font->setSuperscript(true); |
|
14 | |||
15 | 1 | break; |
|
16 | 112 | case 0x0002: |
|
17 | 1 | $font->setSubscript(true); |
|
18 | |||
19 | 1 | break; |
|
20 | } |
||
21 | } |
||
22 | |||
23 | /** |
||
24 | * @var array<int, string> |
||
25 | */ |
||
26 | protected static array $underlineMap = [ |
||
27 | 0x01 => Font::UNDERLINE_SINGLE, |
||
28 | 0x02 => Font::UNDERLINE_DOUBLE, |
||
29 | 0x21 => Font::UNDERLINE_SINGLEACCOUNTING, |
||
30 | 0x22 => Font::UNDERLINE_DOUBLEACCOUNTING, |
||
31 | ]; |
||
32 | |||
33 | 112 | public static function underline(Font $font, int $underline): void |
|
37 | } |
||
38 | } |
||
40 |