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 18, 2017
1 parent 8087a96 commit 8202c7f
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 8 deletions.
17 changes: 13 additions & 4 deletions Charge.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@
*/
final class Charge extends \Df\PaypalClone\Charge {
/**
* 2017-04-13
* 2017-08-19
* @override
* @see \Df\PaypalClone\Charge::pCharge()
* @see \Df\PaypalClone\Charge::k_MerchantId()
* @used-by \Df\PaypalClone\Charge::p()
* @return array(string => mixed)
* @return string
*/
protected function pCharge() {$s = $this->s(); return [];}
protected function k_MerchantId() {return '';}

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

/**
* 2017-04-13
* @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/yandex-kassa"
,"version": "0.0.2"
,"version": "0.0.3"
,"description": "The «Yandex.Kassa» (Яндекс.Касса, Yandex.Checkout) payment extension for Magento 2."
,"type": "magento2-module"
,"homepage": "https://mage2.pro/c/extensions/yandex-kassa"
Expand All @@ -11,7 +11,7 @@
"homepage": "https://mage2.pro/users/dmitry_fedyuk",
"role": "Developer"
}]
,"require": {"mage2pro/core": ">=2.4.53"}
,"require": {"mage2pro/core": ">=2.10.32"}
,"autoload": {"files": ["registration.php"], "psr-4": {"Dfe\\YandexKassa\\": ""}}
,"keywords": [
"API"
Expand Down
4 changes: 2 additions & 2 deletions etc/adminhtml/system.xml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
<depends><field id='enable'>1</field></depends>
</field>
<field
id='testPublicKey'
id='testMerchantID'
translate='label'
type='text'
sortOrder='4'
Expand Down Expand Up @@ -100,7 +100,7 @@
<validate>required-entry</validate>
</field>
<field
id='livePublicKey'
id='liveMerchantID'
translate='label'
type='text'
sortOrder='6'
Expand Down

0 comments on commit 8202c7f

Please sign in to comment.