Total Complexity | 1 |
Total Lines | 20 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
13 | class XPDFFont |
||
14 | { |
||
15 | /** @var string fontname */ |
||
16 | public string $strFontname; |
||
17 | /** @var int size */ |
||
18 | public int $iSize; |
||
19 | /** @var string style */ |
||
20 | public string $strStyle; |
||
21 | |||
22 | /** |
||
23 | * Creates a Font-object |
||
24 | * @param string $strFontname |
||
25 | * @param string $strStyle 'B', 'I' or 'BI' |
||
26 | * @param int $iSize |
||
27 | */ |
||
28 | function __construct(string $strFontname, string $strStyle, int $iSize) |
||
35 |