From 04e83bc7125571ecf35e1452e65ba8154cdcb7eb Mon Sep 17 00:00:00 2001 From: Scrutinizer Auto-Fixer Date: Wed, 24 Jul 2019 10:57:13 +0000 Subject: [PATCH] Scrutinizer Auto-Fixes This commit consists of patches automatically generated for this project on https://scrutinizer-ci.com --- src/Traits/HasWallets.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); } }