Skip to content

Commit 843d662

Browse files
committed
Merge branch 'fix/style-fix' of github.com:SSEsmaeeli/laravel-pay-pocket into fix/style-fix
2 parents 24fe14f + 3d9b8d5 commit 843d662

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Traits/BalanceOperation.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,12 +68,12 @@ protected function generateReference(): string
6868
$length = config('pay-pocket.log_reference_length');
6969
$prefix = config('pay-pocket.log_reference_prefix');
7070

71-
if (!is_callable([$className, $methodName])) {
71+
if (! is_callable([$className, $methodName])) {
7272
throw new InvalidArgumentException('Invalid configuration: The combination of log_reference_generator_class and log_reference_generator_method is not callable.');
7373
}
7474

7575
$reference = call_user_func([$className, $methodName], $length);
7676

77-
return $prefix . $reference;
77+
return $prefix.$reference;
7878
}
7979
}

0 commit comments

Comments
 (0)