Skip to content

Commit

Permalink
sprain#131 Meet coding standards
Browse files Browse the repository at this point in the history
  • Loading branch information
KamilPesek committed Jul 20, 2021
1 parent e7595c4 commit 747ed32
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions src/PaymentPart/Output/TcPdfOutput/TcPdfOutput.php
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down Expand Up @@ -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);
}

Expand All @@ -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);
}

Expand Down

0 comments on commit 747ed32

Please sign in to comment.