Skip to content

Commit

Permalink
Merge pull request #107 from Phrlog/master
Browse files Browse the repository at this point in the history
fix: add CSVWithNames to supported formats
  • Loading branch information
isublimity committed Mar 13, 2019
2 parents c715a28 + adf4875 commit 090261c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/Query/WriteToFile.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,9 @@ class WriteToFile
const FORMAT_TabSeparated = 'TabSeparated';
const FORMAT_TabSeparatedWithNames = 'TabSeparatedWithNames';
const FORMAT_CSV = 'CSV';
const FORMAT_CSVWithNames = 'CSVWithNames';

private $support_format = ['TabSeparated', 'TabSeparatedWithNames', 'CSV'];
private $support_format = ['TabSeparated', 'TabSeparatedWithNames', 'CSV', 'CSVWithNames'];
/**
* @var string
*/
Expand Down

0 comments on commit 090261c

Please sign in to comment.