Skip to content

Commit

Permalink
Undo unneeded change in TcPdfOutput
Browse files Browse the repository at this point in the history
  • Loading branch information
sprain committed Oct 1, 2023
1 parent 7e90079 commit d7a1f2e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/PaymentPart/Output/TcPdfOutput/TcPdfOutput.php
Original file line number Diff line number Diff line change
Expand Up @@ -329,8 +329,8 @@ private function setY(int $y): void

private function printCell(
string $text,
float $w = 0,
float $h = 0,
int $w = 0,
int $h = 0,
int $nextLineAlign = 0,
string $textAlign = self::ALIGN_LEFT
): void {
Expand All @@ -339,8 +339,8 @@ private function printCell(

private function printMultiCell(
string $text,
float $w = 0,
float $h = 0,
int $w = 0,
int $h = 0,
int $nextLineAlign = 0
): void {
$this->tcPdf->MultiCell($w, $h, $text, self::BORDER, self::ALIGN_LEFT, false, $nextLineAlign);
Expand Down

0 comments on commit d7a1f2e

Please sign in to comment.