|
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 validUnsignedLong(mixed $value, string $message = '', string $exception = '') |
48 | 49 | * @method static void validYearMonth(mixed $value, string $message = '', string $exception = '') |
49 | 50 | * @method static void nullOrValidAnyURI(mixed $value, string $message = '', string $exception = '') |
50 | 51 | * @method static void nullOrValidBase64Binary(mixed $value, string $message = '', string $exception = '') |
|
82 | 83 | * @method static void nullOrValidString(mixed $value, string $message = '', string $exception = '') |
83 | 84 | * @method static void nullOrValidTime(mixed $value, string $message = '', string $exception = '') |
84 | 85 | * @method static void nullOrValidToken(mixed $value, string $message = '', string $exception = '') |
| 86 | + * @method static void nullOrValidUnsignedLong(mixed $value, string $message = '', string $exception = '') |
85 | 87 | * @method static void nullOrValidYearMonth(mixed $value, string $message = '', string $exception = '') |
86 | 88 | * @method static void allValidAnyURI(mixed $value, string $message = '', string $exception = '') |
87 | 89 | * @method static void allValidBase64Binary(mixed $value, string $message = '', string $exception = '') |
|
119 | 121 | * @method static void allValidString(mixed $value, string $message = '', string $exception = '') |
120 | 122 | * @method static void allValidTime(mixed $value, string $message = '', string $exception = '') |
121 | 123 | * @method static void allValidToken(mixed $value, string $message = '', string $exception = '') |
| 124 | + * @method static void allValidUnsignedLong(mixed $value, string $message = '', string $exception = '') |
122 | 125 | * @method static void allValidYearMonth(mixed $value, string $message = '', string $exception = '') |
123 | 126 | */ |
124 | 127 | class Assert extends BaseAssert |
@@ -159,5 +162,6 @@ class Assert extends BaseAssert |
159 | 162 | use StringTrait; |
160 | 163 | use TimeTrait; |
161 | 164 | use TokenTrait; |
| 165 | + use UnsignedLongTrait; |
162 | 166 | use YearMonthTrait; |
163 | 167 | } |
0 commit comments