From ab9b73747c44eaeece9ff62ce9702792657e1836 Mon Sep 17 00:00:00 2001 From: Daniel Subiabre Date: Tue, 29 Oct 2024 14:14:15 +0100 Subject: [PATCH] Remove whitespace --- src/Library/Economy/Payment/WalletGateway.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Library/Economy/Payment/WalletGateway.php b/src/Library/Economy/Payment/WalletGateway.php index 58bbb1a..4167a77 100644 --- a/src/Library/Economy/Payment/WalletGateway.php +++ b/src/Library/Economy/Payment/WalletGateway.php @@ -72,7 +72,7 @@ public function handleWebhook(Request $request): Response private function getChargeTotal(GatewayCheckout $checkout): Money { $total = new Money(0, $checkout->getOrigin()->getCurrency()); - + $charges = $checkout->getCharges(); foreach ($charges as $charge) { $total = $this->money->add($charge->getMoney(), $total);