Skip to content

Commit

Permalink
releases/8.4: Make minor codestyle changes to aviz example (#1138)
Browse files Browse the repository at this point in the history
  • Loading branch information
TimWolla authored Nov 21, 2024
1 parent 01a0e55 commit 265992e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions releases/8.4/release.inc
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ class PhpVersion
{
[$major, $minor] = explode('.', $this->version);
$minor++;
$this->version = "$major.$minor";
$this->version = "{$major}.{$minor}";
}
}
PHP
Expand All @@ -191,7 +191,7 @@ class PhpVersion
{
[$major, $minor] = explode('.', $this->version);
$minor++;
$this->version = "$major.$minor";
$this->version = "{$major}.{$minor}";
}
}
PHP
Expand Down

0 comments on commit 265992e

Please sign in to comment.