Passed
Pull Request — master (#88)
by Бабичев
10:02
created
src/Commands/RefreshBalance.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -57,7 +57,7 @@
 block discarded – undo
57 57
      */
58 58
     protected function sqliteUpdate(): void
59 59
     {
60
-        Wallet::query()->each(static function (Wallet $wallet) {
60
+        Wallet::query()->each(static function(Wallet $wallet) {
61 61
             $wallet->refreshBalance();
62 62
         });
63 63
     }
Please login to merge, or discard this patch.
src/Traits/HasWalletFloat.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@  discard block
 block discarded – undo
28 28
     public function forceWithdrawFloat(float $amount, ?array $meta = null, bool $confirmed = true): Transaction
29 29
     {
30 30
         $decimalPlaces = app(WalletService::class)->decimalPlaces($this);
31
-        return $this->forceWithdraw((int)round($amount * $decimalPlaces), $meta, $confirmed);
31
+        return $this->forceWithdraw((int) round($amount * $decimalPlaces), $meta, $confirmed);
32 32
     }
33 33
 
34 34
     /**
@@ -41,7 +41,7 @@  discard block
 block discarded – undo
41 41
     public function depositFloat(float $amount, ?array $meta = null, bool $confirmed = true): Transaction
42 42
     {
43 43
         $decimalPlaces = app(WalletService::class)->decimalPlaces($this);
44
-        return $this->deposit((int)round($amount * $decimalPlaces), $meta, $confirmed);
44
+        return $this->deposit((int) round($amount * $decimalPlaces), $meta, $confirmed);
45 45
     }
46 46
 
47 47
     /**
@@ -54,7 +54,7 @@  discard block
 block discarded – undo
54 54
     public function withdrawFloat(float $amount, ?array $meta = null, bool $confirmed = true): Transaction
55 55
     {
56 56
         $decimalPlaces = app(WalletService::class)->decimalPlaces($this);
57
-        return $this->withdraw((int)round($amount * $decimalPlaces), $meta, $confirmed);
57
+        return $this->withdraw((int) round($amount * $decimalPlaces), $meta, $confirmed);
58 58
     }
59 59
 
60 60
     /**
@@ -64,7 +64,7 @@  discard block
 block discarded – undo
64 64
     public function canWithdrawFloat(float $amount): bool
65 65
     {
66 66
         $decimalPlaces = app(WalletService::class)->decimalPlaces($this);
67
-        return $this->canWithdraw((int)round($amount * $decimalPlaces));
67
+        return $this->canWithdraw((int) round($amount * $decimalPlaces));
68 68
     }
69 69
 
70 70
     /**
@@ -77,7 +77,7 @@  discard block
 block discarded – undo
77 77
     public function transferFloat(Wallet $wallet, float $amount, ?array $meta = null): Transfer
78 78
     {
79 79
         $decimalPlaces = app(WalletService::class)->decimalPlaces($this);
80
-        return $this->transfer($wallet, (int)round($amount * $decimalPlaces), $meta);
80
+        return $this->transfer($wallet, (int) round($amount * $decimalPlaces), $meta);
81 81
     }
82 82
 
83 83
     /**
@@ -89,7 +89,7 @@  discard block
 block discarded – undo
89 89
     public function safeTransferFloat(Wallet $wallet, float $amount, ?array $meta = null): ?Transfer
90 90
     {
91 91
         $decimalPlaces = app(WalletService::class)->decimalPlaces($this);
92
-        return $this->safeTransfer($wallet, (int)round($amount * $decimalPlaces), $meta);
92
+        return $this->safeTransfer($wallet, (int) round($amount * $decimalPlaces), $meta);
93 93
     }
94 94
 
95 95
     /**
@@ -101,7 +101,7 @@  discard block
 block discarded – undo
101 101
     public function forceTransferFloat(Wallet $wallet, float $amount, ?array $meta = null): Transfer
102 102
     {
103 103
         $decimalPlaces = app(WalletService::class)->decimalPlaces($this);
104
-        return $this->forceTransfer($wallet, (int)round($amount * $decimalPlaces), $meta);
104
+        return $this->forceTransfer($wallet, (int) round($amount * $decimalPlaces), $meta);
105 105
     }
106 106
 
107 107
     /**
Please login to merge, or discard this patch.