1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100
|
<?php
/** @generate-class-entries */
/** @not-serializable */
class Spoofchecker
{
/**
* @var int
* @cvalue USPOOF_SINGLE_SCRIPT_CONFUSABLE
*/
public const SINGLE_SCRIPT_CONFUSABLE = UNKNOWN;
/**
* @var int
* @cvalue USPOOF_MIXED_SCRIPT_CONFUSABLE
*/
public const MIXED_SCRIPT_CONFUSABLE = UNKNOWN;
/**
* @var int
* @cvalue USPOOF_WHOLE_SCRIPT_CONFUSABLE
*/
public const WHOLE_SCRIPT_CONFUSABLE = UNKNOWN;
/**
* @var int
* @cvalue USPOOF_ANY_CASE
*/
public const ANY_CASE = UNKNOWN;
/**
* @var int
* @cvalue USPOOF_SINGLE_SCRIPT
*/
public const SINGLE_SCRIPT = UNKNOWN;
/**
* @var int
* @cvalue USPOOF_INVISIBLE
*/
public const INVISIBLE = UNKNOWN;
/**
* @var int
* @cvalue USPOOF_CHAR_LIMIT
*/
public const CHAR_LIMIT = UNKNOWN;
#if U_ICU_VERSION_MAJOR_NUM >= 58
/**
* @var int
* @cvalue USPOOF_ASCII
*/
public const ASCII = UNKNOWN;
/**
* @var int
* @cvalue USPOOF_HIGHLY_RESTRICTIVE
*/
public const HIGHLY_RESTRICTIVE = UNKNOWN;
/**
* @var int
* @cvalue USPOOF_MODERATELY_RESTRICTIVE
*/
public const MODERATELY_RESTRICTIVE = UNKNOWN;
/**
* @var int
* @cvalue USPOOF_MINIMALLY_RESTRICTIVE
*/
public const MINIMALLY_RESTRICTIVE = UNKNOWN;
/**
* @var int
* @cvalue USPOOF_UNRESTRICTIVE
*/
public const UNRESTRICTIVE = UNKNOWN;
/**
* @var int
* @cvalue USPOOF_SINGLE_SCRIPT_RESTRICTIVE
*/
public const SINGLE_SCRIPT_RESTRICTIVE = UNKNOWN;
#endif
public function __construct() {}
/**
* @param int $errorCode
* @tentative-return-type
*/
public function isSuspicious(string $string, &$errorCode = null): bool {}
/**
* @param int $errorCode
* @tentative-return-type
*/
public function areConfusable(string $string1, string $string2, &$errorCode = null): bool {}
/** @tentative-return-type */
public function setAllowedLocales(string $locales): void {}
/** @tentative-return-type */
public function setChecks(int $checks): void {}
#if U_ICU_VERSION_MAJOR_NUM >= 58
/** @tentative-return-type */
public function setRestrictionLevel(int $level): void {}
#endif
}
|