public function CurrencyLocale::setGroupingSeparator in Currency 8.3
Sets the grouping separator.
Parameters
string $separator:
Return value
\Drupal\currency\Entity\CurrencyLocaleInterface
Overrides CurrencyLocaleInterface::setGroupingSeparator
File
- src/
Entity/ CurrencyLocale.php, line 114
Class
- CurrencyLocale
- Defines a currency locale entity.
Namespace
Drupal\currency\EntityCode
public function setGroupingSeparator($separator) {
$this->groupingSeparator = $separator;
return $this;
}