Skip to content

Commit

Permalink
Fix compatibility error for php8.3 syntax (#95)
Browse files Browse the repository at this point in the history
* Fix compatibility error for php83 syntax: change ${variable} to {$variable}

* Add php8.3 to CI

---------

Co-authored-by: Rodion Kachkin <[email protected]>
  • Loading branch information
kylerqws and Rodion Kachkin committed May 15, 2024
1 parent 4c26344 commit fe365d4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/grumphp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion Console/UpdateStatus.php
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ protected function execute(InputInterface $input, OutputInterface $output)

$uuids = $this->transactionHelper->getWaitUuidsByStore($store->getId());
foreach ($uuids as $uuid) {
$output->writeln("<comment>${i} Updating {$uuid} ...</comment>");
$output->writeln("<comment>{$i} Updating {$uuid} ...</comment>");
$this->updateOne($output, $uuid);
$i++;
}
Expand Down

0 comments on commit fe365d4

Please sign in to comment.