Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
dmitrii-fediuk committed Aug 3, 2023
1 parent 2e03430 commit 7b27bc1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
5 changes: 3 additions & 2 deletions W/Responder.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,13 @@
final class Responder extends \Df\Payment\W\Responder {
/**
* 2017-01-04
* 2023-08-03 "Treat `\Throwable` similar to `\Exception`": https://github.com/mage2pro/core/issues/311
* @override
* @see \Df\Payment\W\Responder::error()
* @used-by \Df\Payment\W\Responder::setError()
* @param \Exception|string $e
* @param \Throwable|string $t
*/
protected function error($e):Text {return Text::i('0|' . df_lxts($e));}
protected function error($t):Text {return Text::i('0|' . df_lxts($t));}

/**
* 2017-01-04
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/allpay"
,"version": "1.12.1"
,"version": "1.12.2"
,"description": "歐付寶 OPay (allPay) integration with Magento 2"
,"type": "magento2-module"
,"homepage": "https://mage2.pro/c/extensions/allpay"
Expand All @@ -11,7 +11,7 @@
"homepage": "https://upwork.com/fl/mage2pro",
"role": "Developer"
}]
,"require": {"mage2pro/core": ">=9.0.2"}
,"require": {"mage2pro/core": ">=10.2.1"}
,"autoload": {"files": ["registration.php"], "psr-4": {"Dfe\\AllPay\\": ""}}
,"keywords": [
"allPay"
Expand Down

0 comments on commit 7b27bc1

Please sign in to comment.