You are here

public function ShipmentType::setConfirmationBcc in Commerce Shipping 8.2

Sets the confirmation BCC email.

Parameters

string $confirmation_bcc: The confirmation BCC email.

Return value

$this

Overrides ShipmentTypeInterface::setConfirmationBcc

File

src/Entity/ShipmentType.php, line 119

Class

ShipmentType
Defines the shipment type entity class.

Namespace

Drupal\commerce_shipping\Entity

Code

public function setConfirmationBcc($confirmation_bcc) {
  $this->confirmationBcc = $confirmation_bcc;
  return $this;
}