From 747ed329a0a3bff36c8b58aa58725aaf42ed4e50 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kamil=20Pe=C5=A1ek?= Date: Tue, 20 Jul 2021 10:47:00 +0200 Subject: [PATCH] #131 Meet coding standards --- src/PaymentPart/Output/TcPdfOutput/TcPdfOutput.php | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/src/PaymentPart/Output/TcPdfOutput/TcPdfOutput.php b/src/PaymentPart/Output/TcPdfOutput/TcPdfOutput.php index 1bec4d1d..4af76c72 100644 --- a/src/PaymentPart/Output/TcPdfOutput/TcPdfOutput.php +++ b/src/PaymentPart/Output/TcPdfOutput/TcPdfOutput.php @@ -59,8 +59,7 @@ public function __construct( float $offsetX = 0, float $offsetY = 0, string $font = 'Helvetica' - ) - { + ) { parent::__construct($qrBill, $language); $this->tcPdf = $tcPdf; $this->offsetX = $offsetX; @@ -324,8 +323,7 @@ private function printCell( int $h = 0, int $nextLineAlign = 0, string $textAlign = self::ALIGN_LEFT - ): void - { + ): void { $this->tcPdf->Cell($w, $h, $text, self::BORDER, $nextLineAlign, $textAlign); } @@ -335,8 +333,7 @@ private function printMultiCell( int $h = 0, int $nextLineAlign = 0, string $textAlign = self::ALIGN_LEFT - ): void - { + ): void { $this->tcPdf->MultiCell($w, $h, $text, self::BORDER, $textAlign, false, $nextLineAlign); }