You are here

public function HistoricalRates::__construct in Currency 8.3

Constructs a new instance.

Parameters

array $configuration: A configuration array containing information about the plugin instance.

string $plugin_id: The plugin_id for the plugin instance.

mixed $plugin_definition: The plugin implementation definition.

Overrides ExchangeRateProviderDecorator::__construct

File

src/Plugin/Currency/ExchangeRateProvider/HistoricalRates.php, line 28

Class

HistoricalRates
Provides historical exchange rates.

Namespace

Drupal\currency\Plugin\Currency\ExchangeRateProvider

Code

public function __construct(array $configuration, $plugin_id, $plugin_definition) {
  parent::__construct($configuration, $plugin_id, $plugin_definition, new HistoricalExchangeRateProvider());
}