id; } public function getSent(): ?\DateTimeImmutable { return $this->sent; } public function setSent(\DateTimeImmutable $sent): static { $this->sent = $sent; return $this; } public function getReceived(): ?\DateTimeImmutable { return $this->received; } public function setReceived(?\DateTimeImmutable $received): static { $this->received = $received; return $this; } public function getRecipient(): ?User { return $this->recipient; } public function setRecipient(?User $recipient): static { $this->recipient = $recipient; return $this; } public function getType(): ?MessageType { return $this->type; } public function setType(MessageType $type): static { $this->type = $type; return $this; } public function getMessage(): ?string { return $this->message; } public function setMessage(string $message): static { $this->message = $message; return $this; } public function getTitle(): ?string { return $this->title; } public function setTitle(string $title): static { $this->title = $title; return $this; } public function getSender(): ?User { return $this->sender; } public function setSender(?User $sender): static { $this->sender = $sender; return $this; } public function toArray(): array { return [ 'id' => $this->id->toHex(), 'title' => $this->title, 'sender' => $this->sender->getName(), 'type' => $this->type->name, 'date' => $this->sent, 'message' => $this->message ]; } public function getLink(): ?string { return $this->link; } public function setLink(?string $link): static { $this->link = $link; return $this; } }