You are here

public function BillingSchedule::setDisplayLabel in Commerce Recurring Framework 8

Sets the display label.

Parameters

string $display_label: The display label.

Return value

$this

Overrides BillingScheduleInterface::setDisplayLabel

File

src/Entity/BillingSchedule.php, line 162

Class

BillingSchedule
Defines the billing schedule entity class.

Namespace

Drupal\commerce_recurring\Entity

Code

public function setDisplayLabel($display_label) {
  $this->displayLabel = $display_label;
  return $this;
}