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; }