Skip to content

Commit

Permalink
Sending full firstname to pay.nl for capayable and in3
Browse files Browse the repository at this point in the history
  • Loading branch information
andy committed Jan 22, 2019
1 parent 32dfb73 commit 80a3a39
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,9 @@ public function isApplicableToQuote($quote, $checksBitMask)

return parent::isApplicableToQuote($quote, $checksBitMask);
}

protected static function getFirstname($address){
return $address->getFirstname();
}
}

Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,9 @@ class Pay_Payment_Model_Paymentmethod_CapayableGespreid extends Pay_Payment_Mode
protected $_paymentOptionId = 1813;
protected $_code = 'pay_payment_capayablegespreid';
protected $_formBlockType = 'pay_payment/form_capayableGespreid';

protected static function getFirstname($address){
return $address->getFirstname();
}
}

0 comments on commit 80a3a39

Please sign in to comment.