Skip to content

Commit

Permalink
Fix styling
Browse files Browse the repository at this point in the history
  • Loading branch information
HPWebdeveloper authored and github-actions[bot] committed Jun 27, 2024
1 parent 3bdf40c commit 276ef48
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Traits/BalanceOperation.php
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ protected function generateReference(): string
{
$className = config('pay-pocket.log_reference_generator_class');
$methodName = config('pay-pocket.log_reference_generator_method');
$params = (array)config('pay-pocket.log_reference_params', [12]);
$params = (array) config('pay-pocket.log_reference_params', [12]);
$prefix = config('pay-pocket.log_reference_prefix');

if (! is_callable([$className, $methodName])) {
Expand All @@ -74,6 +74,6 @@ protected function generateReference(): string

$reference = call_user_func([$className, $methodName], ...$params);

return $prefix . $reference;
return $prefix.$reference;
}
}

0 comments on commit 276ef48

Please sign in to comment.