diff --git a/src/Traits/HandlesDeposit.php b/src/Traits/HandlesDeposit.php index 87c817a..e95960f 100644 --- a/src/Traits/HandlesDeposit.php +++ b/src/Traits/HandlesDeposit.php @@ -13,6 +13,7 @@ trait HandlesDeposit /** * Deposit an amount to the user's wallet of a specific type. * + * * @throws InvalidDepositException * @throws InvalidValueException * @throws InvalidWalletTypeException diff --git a/src/Traits/HandlesPayment.php b/src/Traits/HandlesPayment.php index 51ea3c4..b5a513c 100644 --- a/src/Traits/HandlesPayment.php +++ b/src/Traits/HandlesPayment.php @@ -11,7 +11,7 @@ trait HandlesPayment /** * Pay the order value from the user's wallets. * - * @param ?string $notes + * * @return \Illuminate\Support\Collection * * @throws InsufficientBalanceException diff --git a/tests/OperationsWithoutFacadeTest.php b/tests/OperationsWithoutFacadeTest.php index 1b3fee0..dd71986 100644 --- a/tests/OperationsWithoutFacadeTest.php +++ b/tests/OperationsWithoutFacadeTest.php @@ -141,4 +141,4 @@ $log = $user->pay(100.16); expect($log->sum('value'))->toBe(100.16); -}); +}); \ No newline at end of file