- Fix: Notifiable-Trait zum User-Model hinzugefuegt (behebt notify()-500er) - Installer: SMTP-Verbindungstest mit EsmtpTransport + Ueberspringen-Link - Admin: Neuer E-Mail-Tab mit SMTP-Konfiguration + Verbindungstest - Admin: Lazy Quill-Initialisierung (nur sichtbare Locale wird geladen) - Uebersetzungen: 17 neue Mail-Keys in allen 6 Sprachen Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
18 lines
404 B
PHP
Executable File
18 lines
404 B
PHP
Executable File
<?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;
|
|
}
|