Conditions | 2 |
Paths | 2 |
Total Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Tests | 4 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
36 | 1 | public static function catalogueToContent(MessageCatalogue $catalogue, string $domain, array $options = []): string |
|
37 | { |
||
38 | 1 | if (!\array_key_exists('xliff_version', $options)) { |
|
39 | // Set default value for xliff version. |
||
40 | 1 | $options['xliff_version'] = '2.0'; |
|
41 | } |
||
42 | |||
43 | 1 | return (new XliffFileDumper())->formatCatalogue($catalogue, $domain, $options); |
|
44 | } |
||
45 | } |
||
46 |