id; } public function getSupervisor(): ?User { return $this->supervisor; } public function setSupervisor(?User $supervisor): static { $this->supervisor = $supervisor; return $this; } public function getWorker(): ?User { return $this->worker; } public function setWorker(User $worker): static { $this->worker = $worker; return $this; } }