You are here

public function CurrencyLocale::setCountryManager in Currency 8.3

Sets the country manager.

Parameters

\Drupal\Core\Locale\CountryManagerInterface $country_manager:

Return value

$this

File

src/Entity/CurrencyLocale.php, line 206

Class

CurrencyLocale
Defines a currency locale entity.

Namespace

Drupal\currency\Entity

Code

public function setCountryManager(CountryManagerInterface $country_manager) {
  $this->countryManager = $country_manager;
  return $this;
}