Skip to content

Commit

Permalink
Merge pull request #5 from aligent/feature/compatible-with-magento245
Browse files Browse the repository at this point in the history
fixing misspelled method name
  • Loading branch information
aligent-lturner committed Oct 16, 2023
2 parents c31606f + d900b83 commit 14a17be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Observer/AssignDataObserver.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public function execute(Observer $observer)
if (array_key_exists('cc_token', $additionalData)) {
$paymentInfo->setAdditionalInformation('pmnts_token', $additionalData['cc_token']);
}
$paymentInfo->setAdditionInformation('type', $additionalData['type'] ?? null);
$paymentInfo->setAdditionalInformation('type', $additionalData['type'] ?? null);
if (isset($additionalData['pmnts_id']) && !empty($additionalData['pmnts_id'])) {
$paymentInfo->setAdditionalInformation('pmnts_device_id', $additionalData['pmnts_id']);
}
Expand Down

0 comments on commit 14a17be

Please sign in to comment.