name; } public function setName(?string $name): self { $this->name = $name; return $this; } public function getText(): ?string { return $this->text; } public function setText($text): self { $this->text = $text; return $this; } public function getDate(): ?\DateTimeInterface { return $this->date; } public function setDate(?\DateTimeInterface $date): self { $this->date = $date; return $this; } public function getFile(): ?FileInterface { return $this->file; } public function setFile(?FileInterface $file): self { $this->file = $file; return $this; } }