|
9 | 9 | /** |
10 | 10 | * @package simplesamlphp/xml-common |
11 | 11 | * |
| 12 | + * @method static void validDateTime(mixed $value, string $message = '', string $exception = '') |
| 13 | + * @method static void validDuration(mixed $value, string $message = '', string $exception = '') |
| 14 | + * @method static void validEntity(mixed $value, string $message = '', string $exception = '') |
| 15 | + * @method static void validEntities(mixed $value, string $message = '', string $exception = '') |
12 | 16 | * @method static void validHexBinary(mixed $value, string $message = '', string $exception = '') |
| 17 | + * @method static void validID(mixed $value, string $message = '', string $exception = '') |
| 18 | + * @method static void validIDRef(mixed $value, string $message = '', string $exception = '') |
| 19 | + * @method static void validIDRefs(mixed $value, string $message = '', string $exception = '') |
| 20 | + * @method static void validLang(mixed $value, string $message = '', string $exception = '') |
| 21 | + * @method static void validName(mixed $value, string $message = '', string $exception = '') |
| 22 | + * @method static void validNCName(mixed $value, string $message = '', string $exception = '') |
13 | 23 | * @method static void validNMToken(mixed $value, string $message = '', string $exception = '') |
14 | 24 | * @method static void validNMTokens(mixed $value, string $message = '', string $exception = '') |
15 | | - * @method static void validDuration(mixed $value, string $message = '', string $exception = '') |
16 | | - * @method static void validDateTime(mixed $value, string $message = '', string $exception = '') |
17 | | - * @method static void validNCName(mixed $value, string $message = '', string $exception = '') |
18 | 25 | * @method static void validQName(mixed $value, string $message = '', string $exception = '') |
| 26 | + * @method static void nullOrValidDateTime(mixed $value, string $message = '', string $exception = '') |
| 27 | + * @method static void nullOrValidDuration(mixed $value, string $message = '', string $exception = '') |
| 28 | + * @method static void nullOrValidEntity(mixed $value, string $message = '', string $exception = '') |
| 29 | + * @method static void nullOrValidEntities(mixed $value, string $message = '', string $exception = '') |
19 | 30 | * @method static void nullOrValidHexBinary(mixed $value, string $message = '', string $exception = '') |
| 31 | + * @method static void nullOrValidID(mixed $value, string $message = '', string $exception = '') |
| 32 | + * @method static void nullOrValidIDRef(mixed $value, string $message = '', string $exception = '') |
| 33 | + * @method static void nullOrValidIDRefs(mixed $value, string $message = '', string $exception = '') |
| 34 | + * @method static void nullOrValidLang(mixed $value, string $message = '', string $exception = '') |
| 35 | + * @method static void nullOrValidName(mixed $value, string $message = '', string $exception = '') |
| 36 | + * @method static void nullOrValidNCName(mixed $value, string $message = '', string $exception = '') |
20 | 37 | * @method static void nullOrValidNMToken(mixed $value, string $message = '', string $exception = '') |
21 | 38 | * @method static void nullOrValidNMTokens(mixed $value, string $message = '', string $exception = '') |
22 | | - * @method static void nullOrValidDuration(mixed $value, string $message = '', string $exception = '') |
23 | | - * @method static void nullOrValidDateTime(mixed $value, string $message = '', string $exception = '') |
24 | | - * @method static void nullOrValidNCName(mixed $value, string $message = '', string $exception = '') |
25 | 39 | * @method static void nullOrValidQName(mixed $value, string $message = '', string $exception = '') |
| 40 | + * @method static void allValidDateTime(mixed $value, string $message = '', string $exception = '') |
| 41 | + * @method static void allValidDuration(mixed $value, string $message = '', string $exception = '') |
| 42 | + * @method static void allValidEntity(mixed $value, string $message = '', string $exception = '') |
| 43 | + * @method static void allValidEntities(mixed $value, string $message = '', string $exception = '') |
26 | 44 | * @method static void allValidHexBinary(mixed $value, string $message = '', string $exception = '') |
| 45 | + * @method static void allValidID(mixed $value, string $message = '', string $exception = '') |
| 46 | + * @method static void allValidIDRef(mixed $value, string $message = '', string $exception = '') |
| 47 | + * @method static void allValidIDRefs(mixed $value, string $message = '', string $exception = '') |
| 48 | + * @method static void allValidLang(mixed $value, string $message = '', string $exception = '') |
| 49 | + * @method static void allValidName(mixed $value, string $message = '', string $exception = '') |
| 50 | + * @method static void allValidNCName(mixed $value, string $message = '', string $exception = '') |
27 | 51 | * @method static void allValidNMToken(mixed $value, string $message = '', string $exception = '') |
28 | 52 | * @method static void allValidNMTokens(mixed $value, string $message = '', string $exception = '') |
29 | | - * @method static void allValidDuration(mixed $value, string $message = '', string $exception = '') |
30 | | - * @method static void allValidDateTime(mixed $value, string $message = '', string $exception = '') |
31 | | - * @method static void allValidNCName(mixed $value, string $message = '', string $exception = '') |
32 | 53 | * @method static void allValidQName(mixed $value, string $message = '', string $exception = '') |
33 | 54 | */ |
34 | 55 | class Assert extends BaseAssert |
35 | 56 | { |
36 | 57 | use DateTimeTrait; |
37 | 58 | use DurationTrait; |
38 | | - use HexBinTrait; |
39 | | - use NamesTrait; |
40 | | - use TokensTrait; |
| 59 | + use HexBinaryTrait; |
| 60 | + use EntitiesTrait; |
| 61 | + use EntityTrait; |
| 62 | + use IDTrait; |
| 63 | + use IDRefTrait; |
| 64 | + use IDRefsTrait; |
| 65 | + use LangTrait; |
| 66 | + use NameTrait; |
| 67 | + use NCNameTrait; |
| 68 | + use NMTokenTrait; |
| 69 | + use NMTokensTrait; |
| 70 | + use QNameTrait; |
41 | 71 | } |
0 commit comments