|
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 validUnsignedByte(mixed $value, string $message = '', string $exception = '') |
48 | 49 | * @method static void validUnsignedInt(mixed $value, string $message = '', string $exception = '') |
49 | 50 | * @method static void validUnsignedLong(mixed $value, string $message = '', string $exception = '') |
50 | 51 | * @method static void validUnsignedShort(mixed $value, string $message = '', string $exception = '') |
|
85 | 86 | * @method static void nullOrValidString(mixed $value, string $message = '', string $exception = '') |
86 | 87 | * @method static void nullOrValidTime(mixed $value, string $message = '', string $exception = '') |
87 | 88 | * @method static void nullOrValidToken(mixed $value, string $message = '', string $exception = '') |
| 89 | + * @method static void nullOrValidUnsignedByte(mixed $value, string $message = '', string $exception = '') |
88 | 90 | * @method static void nullOrValidUnsignedInt(mixed $value, string $message = '', string $exception = '') |
89 | 91 | * @method static void nullOrValidUnsignedLong(mixed $value, string $message = '', string $exception = '') |
90 | 92 | * @method static void nullOrValidUnsignedShort(mixed $value, string $message = '', string $exception = '') |
|
125 | 127 | * @method static void allValidString(mixed $value, string $message = '', string $exception = '') |
126 | 128 | * @method static void allValidTime(mixed $value, string $message = '', string $exception = '') |
127 | 129 | * @method static void allValidToken(mixed $value, string $message = '', string $exception = '') |
| 130 | + * @method static void allValidUnsignedByte(mixed $value, string $message = '', string $exception = '') |
128 | 131 | * @method static void allValidUnsignedInt(mixed $value, string $message = '', string $exception = '') |
129 | 132 | * @method static void allValidUnsignedLong(mixed $value, string $message = '', string $exception = '') |
130 | 133 | * @method static void allValidUnsignedShort(mixed $value, string $message = '', string $exception = '') |
@@ -168,6 +171,7 @@ class Assert extends BaseAssert |
168 | 171 | use StringTrait; |
169 | 172 | use TimeTrait; |
170 | 173 | use TokenTrait; |
| 174 | + use UnsignedByteTrait; |
171 | 175 | use UnsignedIntTrait; |
172 | 176 | use UnsignedLongTrait; |
173 | 177 | use UnsignedShortTrait; |
|
0 commit comments