public function ExchangeRates::set in Commerce Exchanger 8
Sets the value of a property.
Parameters
string $property_name: The name of the property that should be set.
mixed $value: The value the property should be set to.
Return value
$this
Overrides ConfigEntityBase::set
File
- src/
Entity/ ExchangeRates.php, line 169
Class
- ExchangeRates
- Defines the Exchange rates entity.
Namespace
Drupal\commerce_exchanger\EntityCode
public function set($property_name, $value) {
// Invoke the setters to clear related properties.
if ($property_name == 'plugin') {
$this
->setPluginId($value);
}
elseif ($property_name == 'configuration') {
$this
->setPluginConfiguration($value);
}
else {
return parent::set($property_name, $value);
}
}