Skip to content

Commit

Permalink
Fix capitalization in pSQL function call for order_reference
Browse files Browse the repository at this point in the history
  • Loading branch information
sharkooon authored Feb 26, 2024
1 parent e52bede commit f1c6917
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Repository/PaymentMethodRepository.php
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ public function addOpenStatusPayment($cartId, $orderPayment, $transactionId, $or
'transaction_id' => pSQL($transactionId),
'bank_status' => PaymentStatus::STATUS_OPEN,
'order_id' => (int) $orderId,
'order_reference' => psql($orderReference),
'order_reference' => pSQL($orderReference),
'created_at' => ['type' => 'sql', 'value' => 'NOW()'],
]
);
Expand Down

0 comments on commit f1c6917

Please sign in to comment.