full generation for accompanying period

This commit is contained in:
2021-12-01 15:43:34 +01:00
parent 9d0e1a82e7
commit 7719d2b073
14 changed files with 248 additions and 108 deletions

View File

@@ -39,21 +39,23 @@ class Origin
* @ORM\Column(type="json")
* @Groups({"read"})
*/
private array $label = [];
private $label;
/**
* @ORM\Column(type="date_immutable", nullable=true)
* @Groups({"read"})
*/
private ?\DateTimeImmutable $noActiveAfter = null;
private ?DateTimeImmutable $noActiveAfter = null;
public function getId(): ?int
{
return $this->id;
}
public function getLabel(): array
public function getLabel()
{
dump($this->label);
return $this->label;
}