From d7a1f2e1d5e06b86a3ca9e59aa7e630e2da3f0a9 Mon Sep 17 00:00:00 2001 From: Manuel Reinhard Date: Sun, 1 Oct 2023 18:48:37 +0200 Subject: [PATCH] Undo unneeded change in TcPdfOutput --- src/PaymentPart/Output/TcPdfOutput/TcPdfOutput.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/PaymentPart/Output/TcPdfOutput/TcPdfOutput.php b/src/PaymentPart/Output/TcPdfOutput/TcPdfOutput.php index a777a45..e166574 100644 --- a/src/PaymentPart/Output/TcPdfOutput/TcPdfOutput.php +++ b/src/PaymentPart/Output/TcPdfOutput/TcPdfOutput.php @@ -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 { @@ -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);