From f44d6ec0ac265c8943ca475641f42ee037be7880 Mon Sep 17 00:00:00 2001 From: Tomasz Januszewicz Date: Mon, 6 Dec 2021 10:38:52 +0100 Subject: [PATCH] Null added as accepted in data setter --- src/ScheduledExportBundle/Model/ScheduledExportRegistry.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ScheduledExportBundle/Model/ScheduledExportRegistry.php b/src/ScheduledExportBundle/Model/ScheduledExportRegistry.php index 6d338d5..540e89f 100644 --- a/src/ScheduledExportBundle/Model/ScheduledExportRegistry.php +++ b/src/ScheduledExportBundle/Model/ScheduledExportRegistry.php @@ -74,14 +74,14 @@ public function setGridConfigId(string $gridConfigId): self return $this; } - public function setData(string $data): self + public function setData(?string $data): self { $this->data = $data; return $this; } - public function getData(): string + public function getData(): ?string { return $this->data; }