From 343161183c2dcbe7cbccc119c3b36c35da72f261 Mon Sep 17 00:00:00 2001 From: Michael Bolli Date: Fri, 20 Oct 2023 15:03:48 +0200 Subject: [PATCH] `NUMBER_TYPES`: remove type `currency` as `NumberFormatter::TYPE_CURRENCY` is deprecated in PHP 8.3 --- IntlExtension.php | 1 - 1 file changed, 1 deletion(-) diff --git a/IntlExtension.php b/IntlExtension.php index 1fce0c7..ef380d9 100644 --- a/IntlExtension.php +++ b/IntlExtension.php @@ -37,7 +37,6 @@ final class IntlExtension extends AbstractExtension 'int32' => \NumberFormatter::TYPE_INT32, 'int64' => \NumberFormatter::TYPE_INT64, 'double' => \NumberFormatter::TYPE_DOUBLE, - 'currency' => \NumberFormatter::TYPE_CURRENCY, ]; private const NUMBER_STYLES = [ 'decimal' => \NumberFormatter::DECIMAL,