Conditions | 1 |
Paths | 1 |
Total Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Tests | 4 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
28 | 1 | public static function contentToCatalogue(string $content, string $locale, string $domain): MessageCatalogue |
|
29 | { |
||
30 | 1 | $file = sys_get_temp_dir().'/'.uniqid('xliff', true); |
|
31 | 1 | file_put_contents($file, $content); |
|
32 | |||
33 | 1 | return (new XliffFileLoader())->load($file, $locale, $domain); |
|
34 | } |
||
35 | |||
46 |