name; } /** * Get currency code * * @return string * * @since 1.0.0 */ public function getCode() : string { return $this->code; } /** * Get currency symbol * * @return string * * @since 1.0.0 */ public function getSymbol() : string { return $this->symbol; } /** * Get currency number * * @return string * * @since 1.0.0 */ public function getNumber() : string { return $this->number; } /** * Get currency subunits * * @return int * * @since 1.0.0 */ public function getSubunits() : int { return $this->subunits; } /** * Get currency decimals * * @return string * * @since 1.0.0 */ public function getDecimals() : string { return $this->decimals; } /** * Get currency countries * * @return string * * @since 1.0.0 */ public function getCountries() : string { return $this->countries; } }