route = $route; $this->visitedAt = new \DateTimeImmutable(); } public function getId(): ?int { return $this->id; } public function getRoute(): string { return $this->route; } public function setRoute(string $route): self { $this->route = $route; return $this; } public function getVisitedAt(): \DateTimeImmutable { return $this->visitedAt; } }