name = $name; $this->email = $email; $this->password = $password; $this->password_confirmation = $password_confirmation; $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->password_confirmation; } /** * @return int */ public function getType(): int { return $this->type; } /** * @return int */ public function getStatus(): int { return $this->status; } }