Skip to content

Commit

Permalink
0.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
dmitrii-fediuk committed Aug 19, 2017
1 parent 64e840c commit d93b2f4
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 6 deletions.
26 changes: 22 additions & 4 deletions Charge.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,22 @@
*/
final class Charge extends \Df\PaypalClone\Charge {
/**
* 2017-04-18
* 2017-08-19
* @override
* @see \Df\PaypalClone\Charge::pCharge()
* @see \Df\PaypalClone\Charge::k_Amount()
* @used-by \Df\PaypalClone\Charge::p()
* @return array(string => mixed)
* @return string
*/
protected function pCharge() {$s = $this->s(); return [];}
protected function k_Amount() {return '';}

/**
* 2017-08-19
* @override
* @see \Df\PaypalClone\Charge::k_MerchantId()
* @used-by \Df\PaypalClone\Charge::p()
* @return string
*/
protected function k_MerchantId() {return '';}

/**
* 2017-04-18
Expand All @@ -32,4 +41,13 @@ protected function k_RequestId() {return '';}
* @return string
*/
protected function k_Signature() {return '';}

/**
* 2017-04-18
* @override
* @see \Df\PaypalClone\Charge::pCharge()
* @used-by \Df\PaypalClone\Charge::p()
* @return array(string => mixed)
*/
protected function pCharge() {$s = $this->s(); return [];}
}
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mage2pro/qiwi"
,"version": "0.0.3"
,"version": "0.0.4"
,"description": "The «Visa QIWI Wallet» (QIWI Кошелёк) payment extension for Magento 2."
,"type": "magento2-module"
,"homepage": "https://mage2.pro/c/extensions/qiwi"
Expand All @@ -11,7 +11,7 @@
"homepage": "https://mage2.pro/users/dmitry_fedyuk",
"role": "Developer"
}]
,"require": {"mage2pro/core": ">=2.10.32"}
,"require": {"mage2pro/core": ">=2.10.33"}
,"autoload": {"files": ["registration.php"], "psr-4": {"Dfe\\Qiwi\\": ""}}
,"keywords": [
"API"
Expand Down

0 comments on commit d93b2f4

Please sign in to comment.