false])] private ?bool $deleted = false; public function getId(): ?int { return $this->id; } public function getName(): ReportTodoEnum { return $this->name; } public function setName(ReportTodoEnum $name): static { $this->name = $name; return $this; } public function getReport(): ?Reports { return $this->report; } public function setReport(?Reports $report): static { $this->report = $report; return $this; } public function isDeleted(): ?bool { return $this->deleted; } public function setDeleted(bool $deleted): static { $this->deleted = $deleted; return $this; } }