public function InvoiceType::setConfirmationBcc in Commerce Invoice 8.2
Sets the confirmation BCC email.
Parameters
string $confirmation_bcc: The confirmation BCC email.
Return value
$this
Overrides InvoiceTypeInterface::setConfirmationBcc
File
- src/
Entity/ InvoiceType.php, line 266
Class
- InvoiceType
- Defines the invoice type entity class.
Namespace
Drupal\commerce_invoice\EntityCode
public function setConfirmationBcc($confirmation_bcc) {
$this->confirmationBcc = $confirmation_bcc;
return $this;
}