email; } public function setEmail(string $email): self { $this->email = $email; return $this; } public function getPassword(): string { return $this->password; } public function setPassword(string $password): self { $this->password = $password; return $this; } public function getRememberMe(): string { return $this->rememberMe; } public function setRememberMe(bool $rememberMe): self { $this->rememberMe = $rememberMe; return $this; } }