Normalizer.php
18 lines
| 1 | <?php |
| 2 | |
| 3 | class Normalizer extends Symfony\Polyfill\Intl\Normalizer\Normalizer |
| 4 | { |
| 5 | /** |
| 6 | * @deprecated since ICU 56 and removed in PHP 8 |
| 7 | */ |
| 8 | public const NONE = 2; |
| 9 | public const FORM_D = 4; |
| 10 | public const FORM_KD = 8; |
| 11 | public const FORM_C = 16; |
| 12 | public const FORM_KC = 32; |
| 13 | public const NFD = 4; |
| 14 | public const NFKD = 8; |
| 15 | public const NFC = 16; |
| 16 | public const NFKC = 32; |
| 17 | } |
| 18 |