Fuente: https://github.com/chamilo/chamilo-lms/releases/download/v1.11.40/chamilo-1.11.40.zip sha256: 1cf4bf2cc7bae1ef1a1eff643235db1d552f78ddf4b6dd1e2d2dac9868679439 Snapshot independiente (rama huerfana); diffable vs 1.11.38. vendor incluido.
18 lines
404 B
PHP
18 lines
404 B
PHP
<?php
|
|
|
|
class Normalizer extends Symfony\Polyfill\Intl\Normalizer\Normalizer
|
|
{
|
|
/**
|
|
* @deprecated since ICU 56 and removed in PHP 8
|
|
*/
|
|
public const NONE = 2;
|
|
public const FORM_D = 4;
|
|
public const FORM_KD = 8;
|
|
public const FORM_C = 16;
|
|
public const FORM_KC = 32;
|
|
public const NFD = 4;
|
|
public const NFKD = 8;
|
|
public const NFC = 16;
|
|
public const NFKC = 32;
|
|
}
|