diff --git a/src/Banking/Operation.php b/src/Banking/Operation.php index 8d31bbf..940a65a 100644 --- a/src/Banking/Operation.php +++ b/src/Banking/Operation.php @@ -34,7 +34,7 @@ public function __construct( private readonly ?string $internalCode, private readonly ?string $currencyCode, private readonly ?string $rejectCode, - private readonly ?string $exemptCode + private readonly ?string $exemptCode, ) { $this->details = []; } diff --git a/src/Banking/Total.php b/src/Banking/Total.php index 9d1406c..b1d6de9 100644 --- a/src/Banking/Total.php +++ b/src/Banking/Total.php @@ -32,7 +32,7 @@ public function __construct( private readonly string $recipientAccountNumber2, private readonly ?string $recipientName2, private ?string $processingCenterCode, - private readonly float $totalAmount + private readonly float $totalAmount, ) { $this->processingCenterCode = $processingCenterCode; }