Skip to content

Commit

Permalink
Run Pint
Browse files Browse the repository at this point in the history
  • Loading branch information
3m1n3nc3 committed Jan 11, 2024
1 parent 8096fd8 commit a0b91c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Traits/BalanceOperation.php
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ protected function createLog($logType, $value, $notes = null): void
$newBalance = $logType === 'dec' ? $currentBalance - $value : $currentBalance + $value;

$refGen = config('pay-pocket.log_reference_generator', [
Str::class, 'random', [config('pay-pocket.log_reference_length', 12)]
Str::class, 'random', [config('pay-pocket.log_reference_length', 12)],
]);
$reference = config('pay-pocket.reference_string_prefix', '');
$reference .= isset($refGen[0], $refGen[1])
Expand Down

0 comments on commit a0b91c6

Please sign in to comment.