|
38 | 38 | * @method static void validNormalizedString(mixed $value, string $message = '', string $exception = '') |
39 | 39 | * @method static void validPositiveInteger(mixed $value, string $message = '', string $exception = '') |
40 | 40 | * @method static void validQName(mixed $value, string $message = '', string $exception = '') |
| 41 | + * @method static void validShort(mixed $value, string $message = '', string $exception = '') |
41 | 42 | * @method static void validString(mixed $value, string $message = '', string $exception = '') |
42 | 43 | * @method static void validTime(mixed $value, string $message = '', string $exception = '') |
43 | 44 | * @method static void validToken(mixed $value, string $message = '', string $exception = '') |
|
71 | 72 | * @method static void nullOrValidNormalizedString(mixed $value, string $message = '', string $exception = '') |
72 | 73 | * @method static void nullOrValidPositiveInteger(mixed $value, string $message = '', string $exception = '') |
73 | 74 | * @method static void nullOrValidQName(mixed $value, string $message = '', string $exception = '') |
| 75 | + * @method static void nullOrValidShort(mixed $value, string $message = '', string $exception = '') |
74 | 76 | * @method static void nullOrValidString(mixed $value, string $message = '', string $exception = '') |
75 | 77 | * @method static void nullOrValidTime(mixed $value, string $message = '', string $exception = '') |
76 | 78 | * @method static void nullOrValidToken(mixed $value, string $message = '', string $exception = '') |
|
104 | 106 | * @method static void allValidNormalizedString(mixed $value, string $message = '', string $exception = '') |
105 | 107 | * @method static void allValidPositiveInteger(mixed $value, string $message = '', string $exception = '') |
106 | 108 | * @method static void allValidQName(mixed $value, string $message = '', string $exception = '') |
| 109 | + * @method static void allValidShort(mixed $value, string $message = '', string $exception = '') |
107 | 110 | * @method static void allValidString(mixed $value, string $message = '', string $exception = '') |
108 | 111 | * @method static void allValidTime(mixed $value, string $message = '', string $exception = '') |
109 | 112 | * @method static void allValidToken(mixed $value, string $message = '', string $exception = '') |
@@ -140,6 +143,7 @@ class Assert extends BaseAssert |
140 | 143 | use NormalizedStringTrait; |
141 | 144 | use PositiveIntegerTrait; |
142 | 145 | use QNameTrait; |
| 146 | + use ShortTrait; |
143 | 147 | use StringTrait; |
144 | 148 | use TimeTrait; |
145 | 149 | use TokenTrait; |
|
0 commit comments