Skip to content

Commit

Permalink
Fix codestyle
Browse files Browse the repository at this point in the history
  • Loading branch information
sprain committed Nov 10, 2024
1 parent 28a6cd2 commit 84079c4
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 10 deletions.
3 changes: 1 addition & 2 deletions src/DataGroup/Element/AdditionalInformation.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,7 @@ private function __construct(
* The data is not forwarded with the payment.
*/
private ?string $billInformation
)
{
) {
}

public static function create(
Expand Down
3 changes: 1 addition & 2 deletions src/DataGroup/Element/AlternativeScheme.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,7 @@ private function __construct(
* Parameter character chain of the alternative scheme
*/
private string $parameter
)
{
) {
}

public static function create(string $parameter): self
Expand Down
3 changes: 1 addition & 2 deletions src/DataGroup/Element/CreditorInformation.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,7 @@ private function __construct(
* IBAN or QR-IBAN of the creditor
*/
private string $iban
)
{
) {
$this->iban = StringModifier::stripWhitespace($iban);
}

Expand Down
3 changes: 1 addition & 2 deletions src/DataGroup/Element/Header.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
3 changes: 1 addition & 2 deletions src/DataGroup/Element/PaymentAmountInformation.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,7 @@ private function __construct(
* The payment amount due
*/
private readonly ?float $amount
)
{
) {
$this->currency = strtoupper($currency);
}

Expand Down

0 comments on commit 84079c4

Please sign in to comment.