Skip to content

Commit

Permalink
Fix codestyle
Browse files Browse the repository at this point in the history
  • Loading branch information
sprain committed Oct 1, 2023
1 parent bf8bcc9 commit 7e90079
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/PaymentPart/Output/FpdfOutput/FpdfOutput.php
Original file line number Diff line number Diff line change
Expand Up @@ -257,8 +257,12 @@ private function setTitleElement(Title $element, bool $isReceiptPart): void
$this->fpdf->MultiCell(
0,
2.8,
iconv('UTF-8', 'windows-1252', Translation::get(str_replace('text.', '', $element->getTitle()), $this->language)
));
iconv(
'UTF-8',
'windows-1252',
Translation::get(str_replace('text.', '', $element->getTitle()), $this->language)
)
);
$this->fpdf->Ln($this->amountLS);
}

Expand Down

0 comments on commit 7e90079

Please sign in to comment.