Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

PHP 8.4 support #19

Merged
merged 4 commits into from
Mar 13, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ jobs:
php-version:
- "8.1"
- "8.2"
- "8.4"
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
ARG PHP_VERSION=8.1
FROM php:${PHP_VERSION}-cli-buster
FROM php:${PHP_VERSION}-cli-bookworm

RUN apt-get update && \
apt-get install -y autoconf pkg-config && \
Expand Down
5 changes: 5 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,11 @@ test-container-82:
@-docker-compose run --rm app82 bash
@docker-compose down -v

.PHONY: test-container-84
test-container-84:
@-docker-compose run --rm app84 bash
@docker-compose down -v

.PHONY: lint
lint:
@XDEBUG_MODE=off phpcs -s
Expand Down
18 changes: 18 additions & 0 deletions docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,5 +34,23 @@ services:
- ~/.composer:/root/.composer:delegated
working_dir: /app

app84:
build:
context: .
dockerfile: Dockerfile
args:
PHP_VERSION: '8.4'
environment:
PHP_IDE_CONFIG: 'serverName=icanboogie-cldr'
ICANBOOGIE_CLDR_REDIS_HOST: redis
ICANBOOGIE_CLDR_REDIS_PORT: 6379
depends_on:
- redis
volumes:
- .:/app:delegated
- ~/.composer:/root/.composer:delegated
working_dir: /app


redis:
image: redis:5-alpine
4 changes: 2 additions & 2 deletions src/Core/Locale.php
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ public function localized(Locale|LocaleId|string $locale): LocaleLocalized
*
* @see NumberFormatterLocalized::format
*/
public function format_number(float|int|string $number, string $pattern = null): string
public function format_number(float|int|string $number, ?string $pattern = null): string
{
return $this->get_number_formatter()->format($number, $pattern);
}
Expand All @@ -243,7 +243,7 @@ public function format_number(float|int|string $number, string $pattern = null):
*
* @see NumberFormatterLocalized::format
*/
public function format_percent(float|int|string $number, string $pattern = null): string
public function format_percent(float|int|string $number, ?string $pattern = null): string
{
return $this->get_number_formatter()->format(
$number,
Expand Down
4 changes: 2 additions & 2 deletions src/Core/LocaleNotAvailable.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ final class LocaleNotAvailable extends InvalidArgumentException implements Excep
*/
public function __construct(
public readonly string $locale_id,
string $message = null,
Throwable $previous = null
?string $message = null,
?Throwable $previous = null
) {
$message ??= "Locale ID is not available: $locale_id";

Expand Down
2 changes: 1 addition & 1 deletion src/Numbers/CurrencyFormatter.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public function __construct(
public function format(
float|int|string $number,
NumberPattern|string $pattern,
Symbols $symbols = null,
?Symbols $symbols = null,
string $currencySymbol = self::DEFAULT_CURRENCY_SYMBOL
): string {
return str_replace(
Expand Down
2 changes: 1 addition & 1 deletion src/Numbers/CurrencyLocalized.php
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public function __construct(object $target, Locale $locale)
*
* @param int|null $count Used for pluralization.
*/
public function name_for(int $count = null): string
public function name_for(?int $count = null): string
{
$offset = 'displayName';

Expand Down
4 changes: 2 additions & 2 deletions src/Numbers/CurrencyNotDefined.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ class CurrencyNotDefined extends InvalidArgumentException implements Exception
*/
public function __construct(
public readonly string $currency_code,
string $message = null,
Throwable $previous = null
?string $message = null,
?Throwable $previous = null
) {
$message ??= "Currency code is not defined: $currency_code";

Expand Down
2 changes: 1 addition & 1 deletion src/Numbers/Number.php
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ public static function round_to(float|int|string $number, int $precision): float
* `$number` has no decimal separator. The fractional part is returned as a string to preserve '03' from
* '1.03'.
*/
public static function parse(float|int|string $number, int $precision = null): array
public static function parse(float|int|string $number, ?int $precision = null): array
{
if ($precision === null) {
$precision = self::precision_from($number);
Expand Down
2 changes: 1 addition & 1 deletion src/Numbers/NumberFormatter.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ final class NumberFormatter implements Formatter, Localizable
public function format(
float|int|string $number,
NumberPattern|string $pattern,
Symbols $symbols = null,
?Symbols $symbols = null,
): string {
if (!$pattern instanceof NumberPattern) {
$pattern = NumberPattern::from($pattern);
Expand Down
2 changes: 1 addition & 1 deletion src/Numbers/NumberFormatterLocalized.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ class NumberFormatterLocalized extends LocalizedObject implements Formatter
*
* @param float|int|numeric-string $number
*/
public function format(float|int|string $number, string $pattern = null): string
public function format(float|int|string $number, ?string $pattern = null): string
{
$numbers = $this->locale->numbers;

Expand Down
6 changes: 3 additions & 3 deletions src/Repository.php
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ private function get_plurals(): Plurals
*
* @phpstan-ignore-next-line
*/
public function fetch(string $path, string $data_path = null): array
public function fetch(string $path, ?string $data_path = null): array
{
$data = $this->provider->provide($path);

Expand Down Expand Up @@ -134,7 +134,7 @@ public function fetch(string $path, string $data_path = null): array
public function format_number(
float|int|string $number,
NumberPattern|string $pattern,
Symbols $symbols = null,
?Symbols $symbols = null,
): string {
return $this->number_formatter->format($number, $pattern, $symbols);
}
Expand All @@ -150,7 +150,7 @@ public function format_number(
public function format_currency(
float|int|string $number,
NumberPattern|string $pattern,
Symbols $symbols = null,
?Symbols $symbols = null,
string $currencySymbol = CurrencyFormatter::DEFAULT_CURRENCY_SYMBOL
): string {
return $this->currency_formatter->format($number, $pattern, $symbols, $currencySymbol);
Expand Down
2 changes: 1 addition & 1 deletion src/Supplemental/Plurals/Operands.php
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ private function __construct(float|int|string $number)

[ $integer, $fractional ] = Number::parse($number);

$n = abs($number);
$n = abs($number + 0);

if ($fractional === null || (int)$fractional === 0) {
$n = (int)$n;
Expand Down
2 changes: 1 addition & 1 deletion src/Supplemental/Territory/Territory.php
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ private function retrieve_from_supplemental(string $section): array
*
* @throws Throwable
*/
public function currency_at(DateTimeInterface|string $date = null): ?Currency
public function currency_at(DateTimeInterface|string|null $date = null): ?Currency
{
$date = $this->ensure_is_datetime($date)->format('Y-m-d');

Expand Down
4 changes: 2 additions & 2 deletions src/Supplemental/Territory/TerritoryNotDefined.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ final class TerritoryNotDefined extends InvalidArgumentException implements Exce
*/
public function __construct(
public readonly string $territory_code,
string $message = null,
Throwable $previous = null
?string $message = null,
?Throwable $previous = null
) {
$message ??= "Territory not defined for code: $territory_code.";

Expand Down
2 changes: 1 addition & 1 deletion tests/Numbers/CurrencyNotDefinedTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ public function test_instance(
string $currency_code,
?string $message,
string $expected_message,
Exception $previous = null
?Exception $previous = null
): void {
$sut = new CurrencyNotDefined($currency_code, $message, $previous);

Expand Down
2 changes: 1 addition & 1 deletion tests/Supplemental/Territory/TerritoryNotDefinedTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ public function test_instance(
string $territory_code,
?string $message,
string $expected_message,
Exception $previous = null
?Exception $previous = null
): void {
$sut = new TerritoryNotDefined($territory_code, $message, $previous);

Expand Down