We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1f80dcc commit e8d86fbCopy full SHA for e8d86fb
1 file changed
src/Generator/Traits/NameAndAddress.php
@@ -694,7 +694,8 @@ public function setInvoiceAddress(
694
$zipCode = '',
695
$city = '',
696
$countryCode = 'DE',
697
- $managingOrganisation = 'ZZZ'
+ $managingOrganisation = 'ZZZ',
698
+ $sender = null
699
) {
700
$this->invoiceAddress = $this->addNameAndAddress(
701
$name1,
@@ -705,7 +706,8 @@ public function setInvoiceAddress(
705
706
$city,
707
$countryCode,
708
$managingOrganisation,
- 'IV'
709
+ 'IV',
710
+ $sender ?? ''
711
);
712
return $this;
713
}
0 commit comments