Skip to content

Commit

Permalink
Update PHP 8.4 page example
Browse files Browse the repository at this point in the history
Closes php#1169
  • Loading branch information
saundefined committed Nov 28, 2024
1 parent 7023ed3 commit b7b728e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion releases/8.4/release.inc
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ class Locale
{
get => \sprintf("%s_%s", $this->languageCode, $this->countryCode);
set (string $value) {
[$this->countryCode, $this->languageCode] = explode('_', $value, 2);
[$this->languageCode, $this->countryCode] = explode('_', $value, 2);
}
}
Expand Down

0 comments on commit b7b728e

Please sign in to comment.