|
47 | 47 | * @method static void validToken(mixed $value, string $message = '', string $exception = '') |
48 | 48 | * @method static void validUnsignedInt(mixed $value, string $message = '', string $exception = '') |
49 | 49 | * @method static void validUnsignedLong(mixed $value, string $message = '', string $exception = '') |
| 50 | + * @method static void validUnsignedShort(mixed $value, string $message = '', string $exception = '') |
50 | 51 | * @method static void validYearMonth(mixed $value, string $message = '', string $exception = '') |
51 | 52 | * @method static void nullOrValidAnyURI(mixed $value, string $message = '', string $exception = '') |
52 | 53 | * @method static void nullOrValidBase64Binary(mixed $value, string $message = '', string $exception = '') |
|
86 | 87 | * @method static void nullOrValidToken(mixed $value, string $message = '', string $exception = '') |
87 | 88 | * @method static void nullOrValidUnsignedInt(mixed $value, string $message = '', string $exception = '') |
88 | 89 | * @method static void nullOrValidUnsignedLong(mixed $value, string $message = '', string $exception = '') |
| 90 | + * @method static void nullOrValidUnsignedShort(mixed $value, string $message = '', string $exception = '') |
89 | 91 | * @method static void nullOrValidYearMonth(mixed $value, string $message = '', string $exception = '') |
90 | 92 | * @method static void allValidAnyURI(mixed $value, string $message = '', string $exception = '') |
91 | 93 | * @method static void allValidBase64Binary(mixed $value, string $message = '', string $exception = '') |
|
125 | 127 | * @method static void allValidToken(mixed $value, string $message = '', string $exception = '') |
126 | 128 | * @method static void allValidUnsignedInt(mixed $value, string $message = '', string $exception = '') |
127 | 129 | * @method static void allValidUnsignedLong(mixed $value, string $message = '', string $exception = '') |
| 130 | + * @method static void allValidUnsignedShort(mixed $value, string $message = '', string $exception = '') |
128 | 131 | * @method static void allValidYearMonth(mixed $value, string $message = '', string $exception = '') |
129 | 132 | */ |
130 | 133 | class Assert extends BaseAssert |
@@ -167,5 +170,6 @@ class Assert extends BaseAssert |
167 | 170 | use TokenTrait; |
168 | 171 | use UnsignedIntTrait; |
169 | 172 | use UnsignedLongTrait; |
| 173 | + use UnsignedShortTrait; |
170 | 174 | use YearMonthTrait; |
171 | 175 | } |
0 commit comments