diff --git a/src/Traits/HasWallets.php b/src/Traits/HasWallets.php index 87e07d75c..7037d1b56 100644 --- a/src/Traits/HasWallets.php +++ b/src/Traits/HasWallets.php @@ -105,7 +105,7 @@ public function createWallet(array $data): WalletModel */ public function hasWallet(string $slug): bool { - return (bool)$this->getWallet($slug); + return (bool) $this->getWallet($slug); } }