You are here

public function InvoiceType::setLogo in Commerce Invoice 8.2

Sets the logo.

Parameters

string $uuid: The UUID of the logo file.

Return value

$this

Overrides InvoiceTypeInterface::setLogo

File

src/Entity/InvoiceType.php, line 176

Class

InvoiceType
Defines the invoice type entity class.

Namespace

Drupal\commerce_invoice\Entity

Code

public function setLogo($uuid) {
  $this->logo = $uuid;
  return $this;
}