Skip to content

Commit 9f1d4a0

Browse files
authored
Merge pull request #17 from devinweb/analysis-e7ZZpA
Apply fixes from StyleCI
2 parents 18cf0cf + 379337f commit 9f1d4a0

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/Support/TransactionBuilder.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44

55
use Illuminate\Support\Arr;
66
use Illuminate\Validation\ValidationException;
7+
78
class TransactionBuilder
89
{
910
/**
@@ -60,7 +61,7 @@ public function findByIdOrCheckoutId($id)
6061
$transaction_model = config('hyperpay.transaction_model');
6162
$transaction = app($transaction_model)->whereId($id)->orWhere('checkout_id', $id)->first();
6263

63-
if(! $transaction){
64+
if (! $transaction) {
6465
throw ValidationException::withMessages([__('invalid_checkout_id')]);
6566
}
6667

0 commit comments

Comments
 (0)