Skip to content
This repository has been archived by the owner on Sep 29, 2024. It is now read-only.

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
CharlelieBouvier committed Oct 21, 2019
1 parent d3f0862 commit af1049b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Payline/PaylineSDK.php
Original file line number Diff line number Diff line change
Expand Up @@ -1769,7 +1769,7 @@ public function verifyEnrollment(array $array)
$buyer = array_key_exists('buyer', $array) ? $this->buyer($array['buyer'], $array['shippingAddress'], $array['billingAddress'], $array['merchantAuthentication']) : null;
$subMerchant = array_key_exists('subMerchant', $array) ? $this->subMerchant($array['subMerchant']) : null;
$threeDSInfo = array_key_exists('threeDSInfo', $array) ? $this->threeDSInfo($array['threeDSInfo'], $array['browser'], $array['sdk']) : null;
$merchantScore = array_key_exists('merchantScore', $array) ? $$array['merchantScore'] : null;
$merchantScore = array_key_exists('merchantScore', $array) ? $array['merchantScore'] : null;
$WSRequest = array(
'payment' => $this->payment($array['payment']),
'card' => $this->card($array['card']),
Expand Down

0 comments on commit af1049b

Please sign in to comment.