You are here

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\Entity

Code

public function setGroupingSeparator($separator) {
  $this->groupingSeparator = $separator;
  return $this;
}