deleted = false; } public function getId(): ?int { return $this->id; } public function getAction(): ?string { return $this->action; } public function setAction(string $action): static { $this->action = $action; return $this; } public function getDate(): ?\DateTimeImmutable { return $this->date; } public function setDate(\DateTimeImmutable $date): static { $this->date = $date; return $this; } public function getDeleted(): ?bool { return $this->deleted; } public function setDeleted(?bool $deleted): static { $this->deleted = $deleted; return $this; } }