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