From d745c3b14b1e46fc598edb3ab42a2cd1812ec0c1 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Rapha=C3=ABl=20Gertz?= Date: Mon, 13 Oct 2025 15:26:20 +0200 Subject: [PATCH] Comment out currency formatter --- Util/IntlUtil.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Util/IntlUtil.php b/Util/IntlUtil.php index 80b9530..52bd546 100644 --- a/Util/IntlUtil.php +++ b/Util/IntlUtil.php @@ -123,7 +123,7 @@ class IntlUtil { //Set styles static $styles = [ 'decimal' => \NumberFormatter::DECIMAL, - 'currency' => \NumberFormatter::CURRENCY, + #'currency' => \NumberFormatter::CURRENCY, 'percent' => \NumberFormatter::PERCENT, 'scientific' => \NumberFormatter::SCIENTIFIC, 'spellout' => \NumberFormatter::SPELLOUT, @@ -150,7 +150,7 @@ class IntlUtil { 'int32' => \NumberFormatter::TYPE_INT32, 'int64' => \NumberFormatter::TYPE_INT64, 'double' => \NumberFormatter::TYPE_DOUBLE, - 'currency' => \NumberFormatter::TYPE_CURRENCY + #'currency' => \NumberFormatter::TYPE_CURRENCY ]; //Get formatter -- 2.41.3