$this; } /** * @return string */ public function getNumericIsoCode() { return $this->numericIsoCode; } /** * @param string $numericIsoCode * * @return CurrencyData */ public function setNumericIsoCode($numericIsoCode) { $this->numericIsoCode = $numericIsoCode; return $this; } /** * @return int */ public function getDecimalDigits() { return $this->decimalDigits; } /** * @param int $decimalDigits * * @return CurrencyData */ public function setDecimalDigits($decimalDigits) { $this->decimalDigits = $decimalDigits; return $this; } /** * @return string[]|null */ public function getDisplayNames() { return $this->displayNames; } /** * @param string[] $displayNames * * @return CurrencyData */ public function setDisplayNames($displayNames) { $this->displayNames = $displayNames; return $this; } /** * @return string[]|null */ public function getSymbols() { return $this->symbols; } /** * @param string[] $symbols * * @return CurrencyData */ public function setSymbols($symbols) { $this->symbols = $symbols; return $this; } /** * is currency still active in some territory * * @return bool|null */ public function isActive() { return $this->active; } /** * @param bool $active */ public function setActive($active) { $this->active = (bool) $active; } } Zoznam kategórií