Skip to content

Commit d9ac72c

Browse files
authored
Merge pull request #125 from yajra/analysis-NAkjaL
Apply fixes from StyleCI
2 parents b05645f + 4a8530a commit d9ac72c

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/Exports/DataTablesCollectionExport.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
use Maatwebsite\Excel\Concerns\FromCollection;
88
use Maatwebsite\Excel\Concerns\WithHeadings;
99

10-
abstract class DataTablesCollectionExport implements FromCollection, WithHeadings
10+
abstract class DataTablesCollectionExport implements FromCollection, WithHeadings
1111
{
1212
use Exportable;
1313

src/Services/DataTable.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -414,7 +414,7 @@ public function excel()
414414
{
415415
set_time_limit(3600);
416416

417-
$ext = '.' . strtolower($this->excelWriter);
417+
$ext = '.' . strtolower($this->excelWriter);
418418
$callback = $this->fastExcel ?
419419
($this->fastExcelCallback ? $this->fastExcelCallback() : null)
420420
: $this->excelWriter;
@@ -531,7 +531,7 @@ private function toColumnsCollection(array $columns)
531531
public function csv()
532532
{
533533
set_time_limit(3600);
534-
$ext = '.' . strtolower($this->csvWriter);
534+
$ext = '.' . strtolower($this->csvWriter);
535535
$callback = $this->fastExcel ?
536536
($this->fastExcelCallback ? $this->fastExcelCallback() : null)
537537
: $this->csvWriter;

0 commit comments

Comments
 (0)