Skip to content

Commit

Permalink
Merge pull request #151 from paynl/feature/SC-356
Browse files Browse the repository at this point in the history
Fix for authenticationmethod
  • Loading branch information
daan-pay authored Oct 22, 2021
2 parents 771b49d + 5031394 commit 7b35dc4
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/Result/Payment/AuthenticateMethod.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,9 @@ public function getData()
array(85, 95, 100)
)) {
$result['result'] = 1;
$result['nextAction'] = !empty($arrResult['transaction']['stateName']) ? strtolower($arrResult['transaction']['stateName']) : '';
$result['orderId'] = !empty($arrResult['transaction']['orderId']) ? $arrResult['transaction']['orderId'] : "";
$result['entranceCode'] = !empty($arrResult['transaction']['entranceCode']) ? $arrResult['transaction']['entranceCode'] : "";
}
}
}
Expand Down

0 comments on commit 7b35dc4

Please sign in to comment.