改进 充值
This commit is contained in:
parent
ab77381c84
commit
42267794f1
@ -211,15 +211,19 @@ public function reduce(string $amount = "0", string $description = "消费", boo
|
|||||||
/**
|
/**
|
||||||
* 增加余额
|
* 增加余额
|
||||||
*
|
*
|
||||||
* @param string $amount
|
* @param string|null $amount
|
||||||
* @param string $payment
|
* @param string $payment
|
||||||
* @param string $description
|
* @param string $description
|
||||||
* @param array $options
|
* @param array $options
|
||||||
*
|
*
|
||||||
* @return string
|
* @return string
|
||||||
*/
|
*/
|
||||||
public function charge(string $amount = "0", string $payment = 'console', string $description = '充值', array $options = []): string
|
public function charge(string|null $amount = "0", string $payment = 'console', string $description = '充值', array $options = []): string
|
||||||
{
|
{
|
||||||
|
if ($amount === null || $amount === '') {
|
||||||
|
return $this->balance;
|
||||||
|
}
|
||||||
|
|
||||||
Cache::lock('user_balance_' . $this->id, 10)->block(10, function () use ($amount, $description, $payment, $options) {
|
Cache::lock('user_balance_' . $this->id, 10)->block(10, function () use ($amount, $description, $payment, $options) {
|
||||||
$this->refresh();
|
$this->refresh();
|
||||||
$this->balance = bcadd($this->balance, $amount, 2);
|
$this->balance = bcadd($this->balance, $amount, 2);
|
||||||
|
Loading…
Reference in New Issue
Block a user