1<?php 2 3/** @generate-class-entries */ 4 5class Normalizer 6{ 7 /** @cvalue NORMALIZER_FORM_D */ 8 public const int FORM_D = UNKNOWN; 9 /** @cvalue NORMALIZER_NFD */ 10 public const int NFD = UNKNOWN; 11 /** @cvalue NORMALIZER_FORM_KD */ 12 public const int FORM_KD = UNKNOWN; 13 /** @cvalue NORMALIZER_NFKD */ 14 public const int NFKD = UNKNOWN; 15 /** @cvalue NORMALIZER_FORM_C */ 16 public const int FORM_C = UNKNOWN; 17 /** @cvalue NORMALIZER_NFC */ 18 public const int NFC = UNKNOWN; 19 /** @cvalue NORMALIZER_FORM_KC */ 20 public const int FORM_KC = UNKNOWN; 21 /** @cvalue NORMALIZER_NFKC */ 22 public const int NFKC = UNKNOWN; 23 /** @cvalue NORMALIZER_FORM_KC_CF */ 24 public const int FORM_KC_CF = UNKNOWN; 25 /** @cvalue NORMALIZER_NFKC_CF */ 26 public const int NFKC_CF = UNKNOWN; 27 28 /** 29 * @tentative-return-type 30 * @alias normalizer_normalize 31 */ 32 public static function normalize(string $string, int $form = Normalizer::FORM_C): string|false {} 33 34 /** 35 * @tentative-return-type 36 * @alias normalizer_is_normalized 37 */ 38 public static function isNormalized(string $string, int $form = Normalizer::FORM_C): bool {} 39 40 /** 41 * @tentative-return-type 42 * @alias normalizer_get_raw_decomposition 43 */ 44 public static function getRawDecomposition(string $string, int $form = Normalizer::FORM_C): ?string {} 45} 46