Skip to content

Commit

Permalink
Fixing typo
Browse files Browse the repository at this point in the history
Fixing typo from cardholderName to cardHolderName
  • Loading branch information
cristian-vatca-osf committed Nov 25, 2016
1 parent 091d9e5 commit ad6c98a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Helper/PurchaseHelper.php
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ protected function makeCardInfo(Order $order)
}

$card = SignifydModel::Make("\\Signifyd\\Models\\Card");
$card->cardholderName = $payment->getCcOwner();
$card->cardHolderName = $payment->getCcOwner();
$card->last4 = $payment->getCcLast4();
$card->expiryMonth = $payment->getCcExpMonth();
$card->expiryYear = $payment->getCcExpYear();
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"signifyd/signifyd-php":"0.1.*"
},
"type": "magento2-module",
"version": "2.0.1",
"version": "2.0.2",
"autoload": {
"files": [ "registration.php" ],
"psr-4": {
Expand Down
2 changes: 1 addition & 1 deletion etc/module.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
*/
-->
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:Module/etc/module.xsd">
<module name="Signifyd_Connect" setup_version="2.0.1">
<module name="Signifyd_Connect" setup_version="2.0.2">
<sequence>
<module name="Magento_Sales" />
<module name="Magento_Payment" />
Expand Down

0 comments on commit ad6c98a

Please sign in to comment.