- Reverts the schneespur/ subdirectory restructure (b8e426b)
- Restores package.json and vite.config.js (needed for npm build, were
removed in an earlier cleanup before the restructure)
- Updates public/build/ assets with current Vite output (new content hashes)
17 lines
404 B
PHP
17 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;
|
|
}
|