From 41665afe8430c364b8685231d33bb9df78e35fc6 Mon Sep 17 00:00:00 2001 From: 3m1n3nc3 Date: Sat, 13 Jan 2024 03:11:30 +0100 Subject: [PATCH] Fix $walletsInOrder type, see last commit. --- src/Traits/HandlesPayment.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/Traits/HandlesPayment.php b/src/Traits/HandlesPayment.php index 868e590..d8d83ca 100644 --- a/src/Traits/HandlesPayment.php +++ b/src/Traits/HandlesPayment.php @@ -26,8 +26,7 @@ public function pay(int|float $orderValue, ?string $notes = null): void $remainingOrderValue = $orderValue; /** - * @var \Illuminate\Support\Collection $walletsInOrder + * @var \Illuminate\Support\Collection */ $walletsInOrder = $this->wallets()->whereIn('type', $this->walletsInOrder())->get();