]> Raphaël G. Git Repositories - packbundle/commitdiff
Fix namespace issue
authorRaphaël Gertz <git@rapsys.eu>
Tue, 7 Sep 2021 04:31:09 +0000 (06:31 +0200)
committerRaphaël Gertz <git@rapsys.eu>
Tue, 7 Sep 2021 04:31:09 +0000 (06:31 +0200)
Util/IntlUtil.php

index 3c24282f807ff661e0cd05d36267ba589785ae4b..a9096df65e6fa29732b0be830b60031f61e2d1b4 100644 (file)
@@ -30,19 +30,19 @@ class IntlUtil {
                $date = twig_date_converter($env, $date, $timezone);
 
                $formatValues = array(
                $date = twig_date_converter($env, $date, $timezone);
 
                $formatValues = array(
-                       'none' => IntlDateFormatter::NONE,
-                       'short' => IntlDateFormatter::SHORT,
-                       'medium' => IntlDateFormatter::MEDIUM,
-                       'long' => IntlDateFormatter::LONG,
-                       'full' => IntlDateFormatter::FULL,
+                       'none' => \IntlDateFormatter::NONE,
+                       'short' => \IntlDateFormatter::SHORT,
+                       'medium' => \IntlDateFormatter::MEDIUM,
+                       'long' => \IntlDateFormatter::LONG,
+                       'full' => \IntlDateFormatter::FULL,
                );
 
                );
 
-               $formatter = IntlDateFormatter::create(
+               $formatter = \IntlDateFormatter::create(
                        $locale,
                        $formatValues[$dateFormat],
                        $formatValues[$timeFormat],
                        $locale,
                        $formatValues[$dateFormat],
                        $formatValues[$timeFormat],
-                       IntlTimeZone::createTimeZone($date->getTimezone()->getName()),
-                       'gregorian' === $calendar ? IntlDateFormatter::GREGORIAN : IntlDateFormatter::TRADITIONAL,
+                       \IntlTimeZone::createTimeZone($date->getTimezone()->getName()),
+                       'gregorian' === $calendar ? \IntlDateFormatter::GREGORIAN : \IntlDateFormatter::TRADITIONAL,
                        $format
                );
 
                        $format
                );
 
@@ -81,7 +81,7 @@ class IntlUtil {
         *
         * @return NumberFormatter A NumberFormatter instance
         */
         *
         * @return NumberFormatter A NumberFormatter instance
         */
-       protected function getNumberFormatter($locale, $style): NumberFormatter {
+       protected function getNumberFormatter($locale, $style): \NumberFormatter {
                static $formatter, $currentStyle;
 
                $locale = null !== $locale ? $locale : Locale::getDefault();
                static $formatter, $currentStyle;
 
                $locale = null !== $locale ? $locale : Locale::getDefault();
@@ -93,13 +93,13 @@ class IntlUtil {
                }
 
                static $styleValues = array(
                }
 
                static $styleValues = array(
-                       'decimal' => NumberFormatter::DECIMAL,
-                       'currency' => NumberFormatter::CURRENCY,
-                       'percent' => NumberFormatter::PERCENT,
-                       'scientific' => NumberFormatter::SCIENTIFIC,
-                       'spellout' => NumberFormatter::SPELLOUT,
-                       'ordinal' => NumberFormatter::ORDINAL,
-                       'duration' => NumberFormatter::DURATION,
+                       'decimal' => \NumberFormatter::DECIMAL,
+                       'currency' => \NumberFormatter::CURRENCY,
+                       'percent' => \NumberFormatter::PERCENT,
+                       'scientific' => \NumberFormatter::SCIENTIFIC,
+                       'spellout' => \NumberFormatter::SPELLOUT,
+                       'ordinal' => \NumberFormatter::ORDINAL,
+                       'duration' => \NumberFormatter::DURATION,
                );
 
                if (!isset($styleValues[$style])) {
                );
 
                if (!isset($styleValues[$style])) {
@@ -108,7 +108,7 @@ class IntlUtil {
 
                $currentStyle = $style;
 
 
                $currentStyle = $style;
 
-               $formatter = NumberFormatter::create($locale, $styleValues[$style]);
+               $formatter = \NumberFormatter::create($locale, $styleValues[$style]);
 
                return $formatter;
        }
 
                return $formatter;
        }