11
11
12
12
namespace Symfony \Component \Intl \Globals ;
13
13
14
+ use Symfony \Polyfill \Intl \Icu \Icu ;
15
+
14
16
/**
15
17
* Provides fake static versions of the global functions in the intl extension.
16
18
*
17
19
* @author Bernhard Schussek <[email protected] >
18
20
*
19
21
* @internal
22
+ *
23
+ * @deprecated since Symfony 5.3, use symfony/polyfill-intl-icu ^1.21 instead
20
24
*/
21
25
abstract class IntlGlobals
22
26
{
@@ -61,6 +65,12 @@ abstract class IntlGlobals
61
65
*/
62
66
public static function isFailure (int $ errorCode ): bool
63
67
{
68
+ if (class_exists (Icu::class)) {
69
+ return Icu::isFailure ($ errorCode );
70
+ }
71
+
72
+ trigger_deprecation ('symfony/intl ' , '5.3 ' , 'Polyfills are deprecated, try running "composer require symfony/polyfill-intl-icu ^1.21" instead. ' );
73
+
64
74
return isset (self ::$ errorCodes [$ errorCode ])
65
75
&& $ errorCode > self ::U_ZERO_ERROR ;
66
76
}
@@ -74,6 +84,12 @@ public static function isFailure(int $errorCode): bool
74
84
*/
75
85
public static function getErrorCode ()
76
86
{
87
+ if (class_exists (Icu::class)) {
88
+ return Icu::getErrorCode ();
89
+ }
90
+
91
+ trigger_deprecation ('symfony/intl ' , '5.3 ' , 'Polyfills are deprecated, try running "composer require symfony/polyfill-intl-icu ^1.21" instead. ' );
92
+
77
93
return self ::$ errorCode ;
78
94
}
79
95
@@ -84,6 +100,12 @@ public static function getErrorCode()
84
100
*/
85
101
public static function getErrorMessage (): string
86
102
{
103
+ if (class_exists (Icu::class)) {
104
+ return Icu::getErrorMessage ();
105
+ }
106
+
107
+ trigger_deprecation ('symfony/intl ' , '5.3 ' , 'Polyfills are deprecated, try running "composer require symfony/polyfill-intl-icu ^1.21" instead. ' );
108
+
87
109
return self ::$ errorMessage ;
88
110
}
89
111
@@ -94,6 +116,12 @@ public static function getErrorMessage(): string
94
116
*/
95
117
public static function getErrorName (int $ code ): string
96
118
{
119
+ if (class_exists (Icu::class)) {
120
+ return Icu::getErrorName ($ code );
121
+ }
122
+
123
+ trigger_deprecation ('symfony/intl ' , '5.3 ' , 'Polyfills are deprecated, try running "composer require symfony/polyfill-intl-icu ^1.21" instead. ' );
124
+
97
125
return self ::$ errorCodes [$ code ] ?? '[BOGUS UErrorCode] ' ;
98
126
}
99
127
@@ -107,6 +135,10 @@ public static function getErrorName(int $code): string
107
135
*/
108
136
public static function setError (int $ code , string $ message = '' )
109
137
{
138
+ if (class_exists (Icu::class)) {
139
+ return Icu::setError ($ code , $ message );
140
+ }
141
+
110
142
if (!isset (self ::$ errorCodes [$ code ])) {
111
143
throw new \InvalidArgumentException (sprintf ('No such error code: "%s". ' , $ code ));
112
144
}
0 commit comments