Skip to content

Commit a98b826

Browse files
CS fix
1 parent d4571fc commit a98b826

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Dumper/CsvFileDumper.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ class CsvFileDumper extends FileDumper
2828
*/
2929
public function formatCatalogue(MessageCatalogue $messages, $domain, array $options = [])
3030
{
31-
$handle = fopen('php://memory', 'r+b');
31+
$handle = fopen('php://memory', 'r+');
3232

3333
foreach ($messages->all($domain) as $source => $target) {
3434
fputcsv($handle, [$source, $target], $this->delimiter, $this->enclosure);

0 commit comments

Comments
 (0)