From f49ab8c6f38bf4b628ab469ac654ac0da52bc549 Mon Sep 17 00:00:00 2001 From: Rodion Kachkin Date: Wed, 15 May 2024 16:16:21 +0400 Subject: [PATCH 1/2] OD-523 Fix compatibility error for php83 syntax: change ${variable} to {$variable} --- Console/UpdateStatus.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Console/UpdateStatus.php b/Console/UpdateStatus.php index 0569502..dc2909f 100644 --- a/Console/UpdateStatus.php +++ b/Console/UpdateStatus.php @@ -109,7 +109,7 @@ protected function execute(InputInterface $input, OutputInterface $output) $uuids = $this->transactionHelper->getWaitUuidsByStore($store->getId()); foreach ($uuids as $uuid) { - $output->writeln("${i} Updating {$uuid} ..."); + $output->writeln("{$i} Updating {$uuid} ..."); $this->updateOne($output, $uuid); $i++; } From 5914514ad62223451207fab15361619c2de96624 Mon Sep 17 00:00:00 2001 From: Rodion Kachkin Date: Wed, 15 May 2024 16:46:39 +0400 Subject: [PATCH 2/2] OD-523 Add php8.3 to CI --- .github/workflows/grumphp.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/grumphp.yml b/.github/workflows/grumphp.yml index 0530056..3b88047 100644 --- a/.github/workflows/grumphp.yml +++ b/.github/workflows/grumphp.yml @@ -14,7 +14,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - php-versions: ['7.4', '8.1'] + php-versions: ['7.4', '8.1', '8.3'] steps: - uses: actions/checkout@v2