Skip to content

Commit

Permalink
0.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
dmitrii-fediuk committed Aug 19, 2017
1 parent 1b7a862 commit 16633bb
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/paypal"
,"version": "0.0.2"
,"version": "0.0.3"
,"description": "An alternative PayPal module for Magento 2 you can get fast support and customizations for."
,"type": "magento2-module"
,"homepage": "https://mage2.pro/c/extensions/paypal"
Expand All @@ -11,7 +11,7 @@
"homepage": "https://mage2.pro/users/dmitry_fedyuk",
"role": "Developer"
}]
,"require": {"mage2pro/core": ">=2.5.6"}
,"require": {"mage2pro/core": ">=2.10.33"}
,"autoload": {"files": ["registration.php"], "psr-4": {"Dfe\\Paypal\\": ""}}
,"keywords": [
"API"
Expand Down

0 comments on commit 16633bb

Please sign in to comment.