Skip to content

Commit 249de0c

Browse files
gcw07patrickbrouwers
authored andcommitted
Fix line_ending configuration call (SpartnerNL#1039)
1 parent 18281fa commit 249de0c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Maatwebsite/Excel/Writers/LaravelExcelWriter.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -533,7 +533,7 @@ protected function _setWriter()
533533
{
534534
$this->writer->setDelimiter(config('excel.csv.delimiter', ','));
535535
$this->writer->setEnclosure(config('excel.csv.enclosure', '"'));
536-
$this->writer->setLineEnding(config('excel::csv.line_ending', "\r\n"));
536+
$this->writer->setLineEnding(config('excel.csv.line_ending', "\r\n"));
537537
$this->writer->setUseBOM(config('excel.csv.use_bom', false));
538538
}
539539

0 commit comments

Comments
 (0)