|
12 | 12 | * @method static void validAnyURI(mixed $value, string $message = '', string $exception = '') |
13 | 13 | * @method static void validBase64Binary(mixed $value, string $message = '', string $exception = '') |
14 | 14 | * @method static void validBoolean(mixed $value, string $message = '', string $exception = '') |
| 15 | + * @method static void validByte(mixed $value, string $message = '', string $exception = '') |
15 | 16 | * @method static void validDate(mixed $value, string $message = '', string $exception = '') |
16 | 17 | * @method static void validDateTime(mixed $value, string $message = '', string $exception = '') |
17 | 18 | * @method static void validDay(mixed $value, string $message = '', string $exception = '') |
|
46 | 47 | * @method static void nullOrValidAnyURI(mixed $value, string $message = '', string $exception = '') |
47 | 48 | * @method static void nullOrValidBase64Binary(mixed $value, string $message = '', string $exception = '') |
48 | 49 | * @method static void nullOrValidBoolean(mixed $value, string $message = '', string $exception = '') |
| 50 | + * @method static void nullOrValidByte(mixed $value, string $message = '', string $exception = '') |
49 | 51 | * @method static void nullOrValidDate(mixed $value, string $message = '', string $exception = '') |
50 | 52 | * @method static void nullOrValidDateTime(mixed $value, string $message = '', string $exception = '') |
51 | 53 | * @method static void nullOrValidDay(mixed $value, string $message = '', string $exception = '') |
|
80 | 82 | * @method static void allValidAnyURI(mixed $value, string $message = '', string $exception = '') |
81 | 83 | * @method static void allValidBase64Binary(mixed $value, string $message = '', string $exception = '') |
82 | 84 | * @method static void allValidBoolean(mixed $value, string $message = '', string $exception = '') |
| 85 | + * @method static void allValidByte(mixed $value, string $message = '', string $exception = '') |
83 | 86 | * @method static void allValidDate(mixed $value, string $message = '', string $exception = '') |
84 | 87 | * @method static void allValidDateTime(mixed $value, string $message = '', string $exception = '') |
85 | 88 | * @method static void allValidDay(mixed $value, string $message = '', string $exception = '') |
@@ -117,6 +120,7 @@ class Assert extends BaseAssert |
117 | 120 | use AnyURITrait; |
118 | 121 | use Base64BinaryTrait; |
119 | 122 | use BooleanTrait; |
| 123 | + use ByteTrait; |
120 | 124 | use DateTrait; |
121 | 125 | use DateTimeTrait; |
122 | 126 | use DayTrait; |
|
0 commit comments