public function PaymentGateway::setPluginConfiguration in Commerce Core 8.2
Sets the payment gateway plugin configuration.
Parameters
array $configuration: The payment gateway plugin configuration.
Return value
$this
Overrides PaymentGatewayInterface::setPluginConfiguration
1 call to PaymentGateway::setPluginConfiguration()
- PaymentGateway::set in modules/
payment/ src/ Entity/ PaymentGateway.php - Sets the value of a property.
File
- modules/
payment/ src/ Entity/ PaymentGateway.php, line 175
Class
- PaymentGateway
- Defines the payment gateway entity class.
Namespace
Drupal\commerce_payment\EntityCode
public function setPluginConfiguration(array $configuration) {
$this->configuration = $configuration;
$this->pluginCollection = NULL;
return $this;
}