|
45 | 45 | * @method static void validString(mixed $value, string $message = '', string $exception = '') |
46 | 46 | * @method static void validTime(mixed $value, string $message = '', string $exception = '') |
47 | 47 | * @method static void validToken(mixed $value, string $message = '', string $exception = '') |
| 48 | + * @method static void validUnsignedInt(mixed $value, string $message = '', string $exception = '') |
48 | 49 | * @method static void validUnsignedLong(mixed $value, string $message = '', string $exception = '') |
49 | 50 | * @method static void validYearMonth(mixed $value, string $message = '', string $exception = '') |
50 | 51 | * @method static void nullOrValidAnyURI(mixed $value, string $message = '', string $exception = '') |
|
83 | 84 | * @method static void nullOrValidString(mixed $value, string $message = '', string $exception = '') |
84 | 85 | * @method static void nullOrValidTime(mixed $value, string $message = '', string $exception = '') |
85 | 86 | * @method static void nullOrValidToken(mixed $value, string $message = '', string $exception = '') |
| 87 | + * @method static void nullOrValidUnsignedInt(mixed $value, string $message = '', string $exception = '') |
86 | 88 | * @method static void nullOrValidUnsignedLong(mixed $value, string $message = '', string $exception = '') |
87 | 89 | * @method static void nullOrValidYearMonth(mixed $value, string $message = '', string $exception = '') |
88 | 90 | * @method static void allValidAnyURI(mixed $value, string $message = '', string $exception = '') |
|
121 | 123 | * @method static void allValidString(mixed $value, string $message = '', string $exception = '') |
122 | 124 | * @method static void allValidTime(mixed $value, string $message = '', string $exception = '') |
123 | 125 | * @method static void allValidToken(mixed $value, string $message = '', string $exception = '') |
| 126 | + * @method static void allValidUnsignedInt(mixed $value, string $message = '', string $exception = '') |
124 | 127 | * @method static void allValidUnsignedLong(mixed $value, string $message = '', string $exception = '') |
125 | 128 | * @method static void allValidYearMonth(mixed $value, string $message = '', string $exception = '') |
126 | 129 | */ |
@@ -162,6 +165,7 @@ class Assert extends BaseAssert |
162 | 165 | use StringTrait; |
163 | 166 | use TimeTrait; |
164 | 167 | use TokenTrait; |
| 168 | + use UnsignedIntTrait; |
165 | 169 | use UnsignedLongTrait; |
166 | 170 | use YearMonthTrait; |
167 | 171 | } |
0 commit comments