user = $user; $this->key = md5(random_bytes(100)); $this->createdAt = new \DateTime(); } public function getUser(): User { return $this->user; } public function getKey(): string { return $this->key; } public function getCreatedAt(): \DateTime { return $this->createdAt; } }