From 437bb10ba9c739e5b6e4d0de47e395a708d42824 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cihan=20=C5=9Eent=C3=BCrk?= <53110792+CihanSenturk@users.noreply.github.com> Date: Mon, 19 Jun 2023 17:17:26 +0300 Subject: [PATCH] added export WithStrictNullComparison --- app/Abstracts/Export.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/Abstracts/Export.php b/app/Abstracts/Export.php index 068d3c2f3..b9b27bfee 100644 --- a/app/Abstracts/Export.php +++ b/app/Abstracts/Export.php @@ -15,9 +15,10 @@ use Maatwebsite\Excel\Concerns\ShouldAutoSize; use Maatwebsite\Excel\Concerns\WithHeadings; use Maatwebsite\Excel\Concerns\WithMapping; use Maatwebsite\Excel\Concerns\WithTitle; +use Maatwebsite\Excel\Concerns\WithStrictNullComparison; use PhpOffice\PhpSpreadsheet\Shared\Date as ExcelDate; -abstract class Export implements FromCollection, HasLocalePreference, ShouldAutoSize, ShouldQueue, WithHeadings, WithMapping, WithTitle +abstract class Export implements FromCollection, HasLocalePreference, ShouldAutoSize, ShouldQueue, WithHeadings, WithMapping, WithTitle, WithStrictNullComparison { use Exportable;