Skip to content

Commit e0eac65

Browse files
committed
Fixed up a bug
1 parent deb97b6 commit e0eac65

File tree

2 files changed

+2
-7
lines changed

2 files changed

+2
-7
lines changed

src/Message/DirectPostAbstractRequest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ public function generateFingerprint(array $data)
2424
$data['EPS_TIMESTAMP'],
2525
];
2626

27-
if ($this->hasEMV3DSEnabled()) {
27+
if ($this->getHasEMV3DSEnabled()) {
2828
$hashable = array_merge(
2929
$hashable,
3030
[$data['EPS_ORDERID']]
@@ -79,7 +79,7 @@ public function getBaseData()
7979
$data['EPS_EMAILADDRESS'] = $emailAddress;
8080
}
8181

82-
if ($this->hasEMV3DSEnabled()) {
82+
if ($this->getHasEMV3DSEnabled()) {
8383
$data['EPS_ORDERID'] = $this->getTransactionReference();
8484

8585
$data['EPS_TXNTYPE'] = TransactionType::PAYMENT_3DS_EMV3DS;

src/Message/UnionPayCompletePurchaseRequest.php

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,6 @@
77
*/
88
class UnionPayCompletePurchaseRequest extends DirectPostCompletePurchaseRequest
99
{
10-
/**
11-
* @param $data
12-
*
13-
* @return mixed
14-
*/
1510
public function sendData($data)
1611
{
1712
$this->response = new UnionPayCompletePurchaseResponse($this, $data);

0 commit comments

Comments
 (0)