Skip to content

Commit 1a461c8

Browse files
committed
Fix missing class references
1 parent 6926242 commit 1a461c8

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

src/Interfaces/WalletOperations.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
namespace HPWebdeveloper\LaravelPayPocket\Interfaces;
44

55
use HPWebdeveloper\LaravelPayPocket\Exceptions\InsufficientBalanceException;
6+
use HPWebdeveloper\LaravelPayPocket\Models\WalletsLog;
67

78
interface WalletOperations
89
{
@@ -40,4 +41,4 @@ public function deposit(string $type, int|float $amount, ?string $notes = null):
4041
* Get user's wallet balance.
4142
*/
4243
public function getWalletBalance(): int|float;
43-
}
44+
}

src/Services/PocketServices.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44

55
use HPWebdeveloper\LaravelPayPocket\Exceptions\InsufficientBalanceException;
66
use HPWebdeveloper\LaravelPayPocket\Interfaces\WalletOperations;
7+
use HPWebdeveloper\LaravelPayPocket\Models\WalletsLog;
78

89
class PocketServices
910
{
@@ -43,4 +44,4 @@ public function walletBalanceByType(WalletOperations $user, string $type): int|f
4344
{
4445
return $user->getWalletBalanceByType($type);
4546
}
46-
}
47+
}

0 commit comments

Comments
 (0)