name = $name; $this->email = $email; $this->password = $password; $this->passwordConfirmation = $passwordConfirmation; $this->type = $type; $this->status = $status; } /** * @return string */ public function getName(): string { return $this->name; } /** * @return string */ public function getEmail(): string { return $this->email; } /** * @return string */ public function getPassword(): string { return $this->password; } /** * @return string */ public function getPasswordConfirmation(): string { return $this->passwordConfirmation; } /** * @return int */ public function getType(): int { return $this->type; } /** * @return int */ public function getStatus(): int { return $this->status; } }