Skip to content

Commit d92bfdc

Browse files
Do not treat an empty card as a provided card
Wiping out the whole array is pretty extreme. Only do it if the card array actually has meaningful values. The code that calls this might be trying to support multiple processors so don't assume it 'knows' not to pass an empty card if the processor is sagepay thephpleague#157 (comment)
1 parent 49f5dec commit d92bfdc

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/Message/SharedRepeatAuthorizeRequest.php

+1-2
Original file line numberDiff line numberDiff line change
@@ -69,8 +69,7 @@ public function getData()
6969
$card = $this->getCard();
7070

7171
// If a card is provided, then assume all billing details are being updated.
72-
73-
if ($card) {
72+
if ($card && !empty($card->getParameters()) && !empty(array_filter($card->getParameters()))) {
7473
$data = $this->getBillingAddressData($data);
7574

7675
// If the customer is present, then the CV2 can be supplied again for extra security.

0 commit comments

Comments
 (0)