Skip to content

Commit 976d7ed

Browse files
committed
ext/intl: deprecate U_MULTIPLE_DECIMAL_SEPERATORS constant
Close GH-10980
1 parent 4ce00aa commit 976d7ed

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

UPGRADING

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,10 @@ PHP 8.3 UPGRADE NOTES
7070
4. Deprecated Functionality
7171
========================================
7272

73+
- Intl
74+
. The U_MULTIPLE_DECIMAL_SEPERATORS constant had been deprecated, using
75+
the U_MULTIPLE_DECIMAL_SEPARATORS instead is recommended.
76+
7377
========================================
7478
5. Changed Functions
7579
========================================

ext/intl/common/common.stub.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -425,9 +425,10 @@
425425
/**
426426
* Typo: kept for backward compatibility. Use U_MULTIPLE_DECIMAL_SEPARATORS
427427
* @var int
428+
* @deprecated
428429
* @cvalue U_MULTIPLE_DECIMAL_SEPERATORS
429430
*/
430-
const U_MULTIPLE_DECIMAL_SEPERATORS = UNKNOWN; // TODO Deprecate
431+
const U_MULTIPLE_DECIMAL_SEPERATORS = UNKNOWN;
431432
/**
432433
* @var int
433434
* @cvalue U_MULTIPLE_EXPONENTIAL_SYMBOLS

ext/intl/common/common_arginfo.h

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)