Total Complexity | 3 |
Total Lines | 19 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
8 | class HtmlHelper |
||
9 | { |
||
10 | public static function createHtml(string $html): string |
||
11 | { |
||
12 | $filename = tempnam(sys_get_temp_dir(), 'html'); |
||
13 | file_put_contents($filename, $html); |
||
14 | |||
15 | return $filename; |
||
16 | } |
||
17 | |||
18 | public static function loadHtmlIntoSpreadsheet(string $filename, bool $unlink = false): Spreadsheet |
||
27 | } |
||
28 | } |
||
29 |