You are here

public function BillingSchedule::setPluginConfiguration in Commerce Recurring Framework 8

Sets the billing schedule plugin configuration.

Parameters

array $configuration: The billing schedule plugin configuration.

Return value

$this

Overrides BillingScheduleInterface::setPluginConfiguration

1 call to BillingSchedule::setPluginConfiguration()
BillingSchedule::set in src/Entity/BillingSchedule.php
Sets the value of a property.

File

src/Entity/BillingSchedule.php, line 242

Class

BillingSchedule
Defines the billing schedule entity class.

Namespace

Drupal\commerce_recurring\Entity

Code

public function setPluginConfiguration(array $configuration) {
  $this->configuration = $configuration;
  $this->billingSchedulePluginCollection = NULL;
  return $this;
}