Skip to content

Commit

Permalink
updates
Browse files Browse the repository at this point in the history
  • Loading branch information
NafezlyDotCom committed Aug 7, 2023
1 parent 646d5dd commit e70f4fa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Classes/PerfectMoneyPayment.php
Original file line number Diff line number Diff line change
Expand Up @@ -88,14 +88,14 @@ public function verify(Request $request)
if ($v2_hash === $request['V2_HASH'] ) {
return [
'success' => true,
'payment_id'=>$paymentId,
'payment_id'=>$request['PAYMENT_ID'],
'message' => __('nafezly::messages.PAYMENT_FAILED'),
'process_data' => $request->all()
];
} else {
return [
'success' => false,
'payment_id'=>$paymentId,
'payment_id'=>$request['PAYMENT_ID'],
'message' => __('nafezly::messages.PAYMENT_FAILED'),
'process_data' => $request->all()
];
Expand Down

0 comments on commit e70f4fa

Please sign in to comment.