Skip to content

Commit

Permalink
Fix payment title.
Browse files Browse the repository at this point in the history
  • Loading branch information
MykolaMalovanets committed Nov 20, 2023
1 parent 40ec8d8 commit bae63d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Model/Payment/Gateway/Config/TitleValueHandler.php
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ public function handle(array $subject, $storeId = null)
return $this->config->getPaymentTitle($websiteId);
}
return strlen($ccLast4) === 4
? $ccType . ': end with ' . $ccLast4
? $ccType . ': ending in ' . $ccLast4
: $ccType . ': ' . $ccLast4;
}
}

0 comments on commit bae63d4

Please sign in to comment.