From 84079c4281927c92e53f0f42f8745b5895e47030 Mon Sep 17 00:00:00 2001 From: Manuel Reinhard Date: Sun, 10 Nov 2024 11:57:38 +0100 Subject: [PATCH] Fix codestyle --- src/DataGroup/Element/AdditionalInformation.php | 3 +-- src/DataGroup/Element/AlternativeScheme.php | 3 +-- src/DataGroup/Element/CreditorInformation.php | 3 +-- src/DataGroup/Element/Header.php | 3 +-- src/DataGroup/Element/PaymentAmountInformation.php | 3 +-- 5 files changed, 5 insertions(+), 10 deletions(-) diff --git a/src/DataGroup/Element/AdditionalInformation.php b/src/DataGroup/Element/AdditionalInformation.php index 8340765..ecf74a4 100644 --- a/src/DataGroup/Element/AdditionalInformation.php +++ b/src/DataGroup/Element/AdditionalInformation.php @@ -25,8 +25,7 @@ private function __construct( * The data is not forwarded with the payment. */ private ?string $billInformation - ) - { + ) { } public static function create( diff --git a/src/DataGroup/Element/AlternativeScheme.php b/src/DataGroup/Element/AlternativeScheme.php index e1b0861..1879140 100644 --- a/src/DataGroup/Element/AlternativeScheme.php +++ b/src/DataGroup/Element/AlternativeScheme.php @@ -21,8 +21,7 @@ private function __construct( * Parameter character chain of the alternative scheme */ private string $parameter - ) - { + ) { } public static function create(string $parameter): self diff --git a/src/DataGroup/Element/CreditorInformation.php b/src/DataGroup/Element/CreditorInformation.php index e0903d6..2ef5d35 100644 --- a/src/DataGroup/Element/CreditorInformation.php +++ b/src/DataGroup/Element/CreditorInformation.php @@ -18,8 +18,7 @@ private function __construct( * IBAN or QR-IBAN of the creditor */ private string $iban - ) - { + ) { $this->iban = StringModifier::stripWhitespace($iban); } diff --git a/src/DataGroup/Element/Header.php b/src/DataGroup/Element/Header.php index 6e83df2..2c8ba22 100644 --- a/src/DataGroup/Element/Header.php +++ b/src/DataGroup/Element/Header.php @@ -34,8 +34,7 @@ private function __construct( * Character set code */ private readonly int $coding - ) - { + ) { } public static function create(string $qrType, string $version, int $coding): self diff --git a/src/DataGroup/Element/PaymentAmountInformation.php b/src/DataGroup/Element/PaymentAmountInformation.php index 913000a..91fea72 100644 --- a/src/DataGroup/Element/PaymentAmountInformation.php +++ b/src/DataGroup/Element/PaymentAmountInformation.php @@ -25,8 +25,7 @@ private function __construct( * The payment amount due */ private readonly ?float $amount - ) - { + ) { $this->currency = strtoupper($currency); }