Skip to content

Commit

Permalink
1.1.9
Browse files Browse the repository at this point in the history
  • Loading branch information
dmitrii-fediuk committed Aug 19, 2017
1 parent 871b862 commit 19383ee
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 8 deletions.
20 changes: 14 additions & 6 deletions Charge.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,19 @@ final class Charge extends \Df\PaypalClone\Charge {
* @return string
*/
protected function k_Amount() {return 'Amount';}

/**
* 2017-08-19
* 2017-04-10
* «Refer to Appendix I.pdf file for MYR gateway.
* Refer to Appendix II.pdf file for Multi-curency gateway.».
* Required, String, 5.
* @override
* @see \Df\PaypalClone\Charge::k_Currency()
* @used-by \Df\PaypalClone\Charge::p()
* @return string
*/
protected function k_Currency() {return 'Currency';}

/**
* 2017-08-19
Expand Down Expand Up @@ -60,17 +73,12 @@ protected function k_Signature() {return 'Signature';}
* @used-by \Df\PaypalClone\Charge::p()
* @return array(string => mixed)
*/
protected function pCharge() {$s = $this->s(); return [
protected function pCharge() {return [
// 2017-04-10
// «Backend response page URL (refer to 2.7)».
// Required, String, 200.
'BackendURL' => $this->callback()
// 2017-04-10
// «Refer to Appendix I.pdf file for MYR gateway.
// Refer to Appendix II.pdf file for Multi-curency gateway.».
// Required, String, 5.
,'Currency' => $this->currencyC()
// 2017-04-10
// «Encoding type
// “ISO-8859-1” – English
// “UTF-8” – Unicode
Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mage2pro/ipay88"
,"version": "1.1.8"
,"version": "1.1.9"
,"description": "The «iPay88» payment extension for Magento 2."
,"type": "magento2-module"
,"homepage": "https://mage2.pro/c/extensions/ipay88"
Expand All @@ -11,7 +11,7 @@
"homepage": "https://mage2.pro/users/dmitry_fedyuk",
"role": "Developer"
}]
,"require": {"mage2pro/core": ">=2.10.33"}
,"require": {"mage2pro/core": ">=2.10.34"}
,"autoload": {"files": ["registration.php"], "psr-4": {"Dfe\\IPay88\\": ""}}
,"keywords": [
"API"
Expand Down

0 comments on commit 19383ee

Please sign in to comment.