Skip to content

Commit 090261c

Browse files
authored
Merge pull request #107 from Phrlog/master
fix: add CSVWithNames to supported formats
2 parents c715a28 + adf4875 commit 090261c

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/Query/WriteToFile.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,9 @@ class WriteToFile
1212
const FORMAT_TabSeparated = 'TabSeparated';
1313
const FORMAT_TabSeparatedWithNames = 'TabSeparatedWithNames';
1414
const FORMAT_CSV = 'CSV';
15+
const FORMAT_CSVWithNames = 'CSVWithNames';
1516

16-
private $support_format = ['TabSeparated', 'TabSeparatedWithNames', 'CSV'];
17+
private $support_format = ['TabSeparated', 'TabSeparatedWithNames', 'CSV', 'CSVWithNames'];
1718
/**
1819
* @var string
1920
*/

0 commit comments

Comments
 (0)