Skip to content

Commit

Permalink
1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
dmitrii-fediuk committed Sep 13, 2017
1 parent e0d7f21 commit 406b8bf
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
12 changes: 6 additions & 6 deletions W/Handler.php → W/Responder.php
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?php
namespace Dfe\IPay88\W;
use Df\Framework\Controller\Result\Text;
// 2017-04-12
final class Handler extends \Df\PaypalClone\W\Handler {
use Df\Framework\Controller\Response\Text;
// 2017-09-13
final class Responder extends \Df\Payment\W\Responder {
/**
* 2017-04-12
* «On the ‘backend_response.asp’ page you need to write out the word ‘RECEIVEOK’ only (without quote)
Expand All @@ -12,9 +12,9 @@ final class Handler extends \Df\PaypalClone\W\Handler {
* on different interval if no ‘RECEIVEOK’ acknowledgement detected.»
* «Technical Specification v1.6.2 (For Malaysia Only)» Page 10. https://mage2.pro/t/3682
* @override
* @see \Df\Payment\W\Handler::result()
* @used-by \Df\Payment\W\Handler::handle()
* @see \Df\Payment\W\Responder::success()
* @used-by \Df\Payment\W\Responder::get()
* @return Text
*/
protected function result() {return Text::i('RECEIVEOK');}
protected function success() {return Text::i('RECEIVEOK');}
}
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.16"
,"version": "1.2.0"
,"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.11.22"}
,"require": {"mage2pro/core": ">=2.12.0"}
,"autoload": {"files": ["registration.php"], "psr-4": {"Dfe\\IPay88\\": ""}}
,"keywords": [
"API"
Expand Down

0 comments on commit 406b8bf

Please sign in to comment.