email = $email; $this->password = $password; $this->rememberUser = $rememberUser; } /** * @return string */ public function getEmail(): string { return $this->email; } /** * @return string */ public function getPassword(): string { return $this->password; } /** * @return bool */ public function isRememberUser(): bool { return $this->rememberUser; } }