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

Commit

Permalink
4.47.1 release - 2
Browse files Browse the repository at this point in the history
  • Loading branch information
Fabien SUAREZ committed Aug 4, 2016
1 parent 78038ef commit 227bccf
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/Payline/PaylineSDK.php
Original file line number Diff line number Diff line change
Expand Up @@ -1574,7 +1574,8 @@ public function verifyEnrollment($array)
'userAgent' => $array['userAgent'],
'mdFieldValue' => $array['mdFieldValue'],
'walletId' => $array['walletId'],
'walletCardInd' => $array['walletCardInd']
'walletCardInd' => $array['walletCardInd'],
'generateVirtualCvx' => $array['generateVirtualCvx']

This comment has been minimized.

Copy link
@AntoineLemaire

AntoineLemaire Sep 27, 2016

Contributor

According to v4.47.1.wsdl
<element minOccurs="0" name="generateVirtualCvx" nillable="true" type="xsd:string"/>

generateVirtualCvx should not be optionnal?

if (isset($array['generateVirtualCvx'])) {
    $WSRequest['generateVirtualCvx'] = $array['generateVirtualCvx'];
}

This comment has been minimized.

Copy link
@PaylineGitHub

PaylineGitHub Sep 27, 2016

Contributor

You're right ! Thank you for this feedback.
I've commited your suggest on my local git, I'll push on GitHub for 4.48.1 release, due before October 19

);
return $this->webServiceRequest($array, $WSRequest, PaylineSDK::DIRECT_API, 'verifyEnrollment');
}
Expand Down

0 comments on commit 227bccf

Please sign in to comment.