firstName = $firstName; $this->lastName = $lastName; $this->email = $email; $this->password = $password; $this->roleId = $roleId; $this->isVerified = $isVerified; } /** * @return string */ public function getFirstName(): string { return $this->firstName; } /** * @return string */ public function getLastName(): string { return $this->lastName; } /** * @return string */ public function getEmail(): string { return $this->email; } /** * @return string */ public function getPassword(): string { return $this->password; } /** * @return mixed */ public function getRoleId() { return $this->roleId; } /** * @return bool */ public function isVerified(): bool { return $this->isVerified; } }