Skip to content

Commit c3628e2

Browse files
authored
added documentation for csv settings output_encoding (SpartnerNL#171)
Co-authored-by: Claudio Pennati <[email protected]>
1 parent 0960d6d commit c3628e2

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

3.1/exports/settings.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,9 @@ class InvoicesExport implements WithCustomCsvSettings
6464
public function getCsvSettings(): array
6565
{
6666
return [
67-
'delimiter' => ';'
67+
'delimiter' => ';',
68+
'use_bom' => false,
69+
'output_encoding' => 'ISO-8859-1',
6870
];
6971
}
7072
}
@@ -78,6 +80,7 @@ class InvoicesExport implements WithCustomCsvSettings
7880
* `use_bom`
7981
* `include_separator_line`
8082
* `excel_compatibility`
83+
* `output_encoding`
8184

8285
## Cell caching
8386

0 commit comments

Comments
 (0)