totalDigits = $totalDigits; $this->decimalDigits = $decimalDigits; $this->type = "NUMERIC"; } public function getDecimalDigits(): ?int { return $this->decimalDigits; } public function getTotalDigits(): ?int { return $this->totalDigits; } public function getTypeName(): string { return $this->type; } }