Skip to content

Commit 3d9b8d5

Browse files
SSEsmaeeligithub-actions[bot]
authored andcommitted
Fix styling
1 parent 2e3e7b9 commit 3d9b8d5

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
@@ -69,12 +69,12 @@ protected function generateReference(): string
6969
$length = config('pay-pocket.log_reference_length');
7070
$prefix = config('pay-pocket.log_reference_prefix');
7171

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

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

78-
return $prefix . $reference;
78+
return $prefix.$reference;
7979
}
8080
}

0 commit comments

Comments
 (0)