Skip to content

Commit 4d191c5

Browse files
committed
Release version 7.3.1
1 parent 5089154 commit 4d191c5

File tree

4 files changed

+7
-5
lines changed

4 files changed

+7
-5
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ We strongly encourage you to join us in contributing to this repository so every
1010
Read our [**contribution guidelines**](CONTRIBUTING.md) to find out how.
1111

1212
## Requirements
13-
This plugin supports PrestaShop versions 1.7.5.0 to 8.2.3.
13+
This plugin supports PrestaShop versions 1.7.5.0 to 9.0.3.
1414

1515
## Documentation
1616
Please find the relevant documentation for

src/adyenofficial.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@ public function __construct()
1919
{
2020
$this->name = 'adyenofficial';
2121
$this->tab = 'payments_gateways';
22-
$this->version = '7.3.0';
22+
$this->version = '7.3.1';
2323

2424
$this->author = $this->l('Adyen');
2525
$this->need_instance = 0;
26-
$this->ps_versions_compliancy = ['min' => '1.7.5.0', 'max' => '9.0.2'];
26+
$this->ps_versions_compliancy = ['min' => '1.7.5.0', 'max' => '9.0.3'];
2727
$this->bootstrap = true;
2828

2929
parent::__construct();

src/classes/Services/OrderModificationHandler.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,8 @@ private static function getTransactionHistory(\Order $order): TransactionHistory
100100
*
101101
* @throws \Exception
102102
*/
103-
private static function getTransactionHistoryService(string $storeId): TransactionHistoryService {
103+
private static function getTransactionHistoryService(string $storeId): TransactionHistoryService
104+
{
104105
return StoreContext::doWithStore(
105106
$storeId,
106107
[ServiceRegister::getInstance(), 'getService'],

src/classes/Services/TransactionDetailsHandler.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,8 @@ public static function getTransactionDetails(\Order $order): array
3434
*
3535
* @throws \Exception
3636
*/
37-
private static function getTransactionDetailsService(string $storeId): TransactionDetailsService {
37+
private static function getTransactionDetailsService(string $storeId): TransactionDetailsService
38+
{
3839
return StoreContext::doWithStore(
3940
$storeId,
4041
[ServiceRegister::getInstance(), 'getService'],

0 commit comments

Comments
 (0)