Skip to content

Commit 6716b1a

Browse files
committed
Apply fixes from StyleCI
1 parent e64cf8b commit 6716b1a

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

src/Message/DirectPostAbstractRequest.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,8 @@ public function generateFingerprint(array $data)
3535

3636
if ($this->getHasEMV3DSEnabled()) {
3737
$hashable = array_merge(
38-
$hashable, [$data['EPS_ORDERID']]
38+
$hashable,
39+
[$data['EPS_ORDERID']]
3940
);
4041
}
4142

src/Message/DirectPostWebhookRequest.php

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ public function vefiyFingerPrint($fingerprint)
3232
$data = $this->data;
3333

3434
if ($fingerprint !== $this->generateResponseFingerprint($data)) {
35-
$data['restext'] = $data['restext'] . ', Invalid fingerprint.';
35+
$data['restext'] = $data['restext'].', Invalid fingerprint.';
3636
$data['summarycode'] = 3;
3737
}
3838

@@ -44,5 +44,7 @@ public function getData()
4444
return $this->data;
4545
}
4646

47-
public function sendData($data){}
47+
public function sendData($data)
48+
{
49+
}
4850
}

0 commit comments

Comments
 (0)