You are here

public function InvoiceType::setFooterText in Commerce Invoice 8.2

Sets the payment terms of the invoice type.

Parameters

string $footer_text: The footer text.

Return value

$this

Overrides InvoiceTypeInterface::setFooterText

File

src/Entity/InvoiceType.php, line 221

Class

InvoiceType
Defines the invoice type entity class.

Namespace

Drupal\commerce_invoice\Entity

Code

public function setFooterText($footer_text) {
  $this->footerText = $footer_text;
  return $this;
}