You are here

public function BillingSchedule::setUnpaidSubscriptionState in Commerce Recurring Framework 8

Sets the unpaid subscription state.

Parameters

string $state: The subscription state.

Return value

$this

Overrides BillingScheduleInterface::setUnpaidSubscriptionState

File

src/Entity/BillingSchedule.php, line 210

Class

BillingSchedule
Defines the billing schedule entity class.

Namespace

Drupal\commerce_recurring\Entity

Code

public function setUnpaidSubscriptionState($state) {
  $this->unpaidSubscriptionState = $state;
  return $this;
}