mirror of
https://github.com/twigphp/Twig.git
synced 2026-09-16 12:26:30 +00:00
minor #3894 fix NumberFormatter::TYPE_CURRENCY being deprecated in PHP 8.3 (mbolli)
This PR was merged into the 3.x branch.
Discussion
----------
fix `NumberFormatter::TYPE_CURRENCY` being deprecated in PHP 8.3
It was never used anyway (by Twig and by PHP), so removing it should not have any side-effects.
Commits
-------
223ba6ec fix `NumberFormatter::TYPE_CURRENCY` being deprecated in PHP 8.3
This commit is contained in:
@@ -67,7 +67,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,
|
||||
|
||||
Reference in New Issue
Block a user