Skip to content

Commit

Permalink
Merge pull request #31 from DivanteLtd/bugfix/Bug-in-Scheduled-export…
Browse files Browse the repository at this point in the history
…-causes-export-to-not-run

Null added as accepted in data setter
  • Loading branch information
Kuba Płaskonka authored Dec 6, 2021
2 parents bdc0187 + f44d6ec commit 204a0e0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ScheduledExportBundle/Model/ScheduledExportRegistry.php
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down

0 comments on commit 204a0e0

Please sign in to comment.