|
11 | 11 | * |
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 | + * @method static void validBoolean(mixed $value, string $message = '', string $exception = '') |
14 | 15 | * @method static void validDate(mixed $value, string $message = '', string $exception = '') |
15 | 16 | * @method static void validDateTime(mixed $value, string $message = '', string $exception = '') |
16 | 17 | * @method static void validDay(mixed $value, string $message = '', string $exception = '') |
|
35 | 36 | * @method static void validYearMonth(mixed $value, string $message = '', string $exception = '') |
36 | 37 | * @method static void nullOrValidAnyURI(mixed $value, string $message = '', string $exception = '') |
37 | 38 | * @method static void nullOrValidBase64Binary(mixed $value, string $message = '', string $exception = '') |
| 39 | + * @method static void nullOrValidBoolean(mixed $value, string $message = '', string $exception = '') |
38 | 40 | * @method static void nullOrValidDate(mixed $value, string $message = '', string $exception = '') |
39 | 41 | * @method static void nullOrValidDateTime(mixed $value, string $message = '', string $exception = '') |
40 | 42 | * @method static void nullOrValidDay(mixed $value, string $message = '', string $exception = '') |
|
59 | 61 | * @method static void nullOrValidYearMonth(mixed $value, string $message = '', string $exception = '') |
60 | 62 | * @method static void allValidAnyURI(mixed $value, string $message = '', string $exception = '') |
61 | 63 | * @method static void allValidBase64Binary(mixed $value, string $message = '', string $exception = '') |
| 64 | + * @method static void allValidBoolean(mixed $value, string $message = '', string $exception = '') |
62 | 65 | * @method static void allValidDate(mixed $value, string $message = '', string $exception = '') |
63 | 66 | * @method static void allValidDateTime(mixed $value, string $message = '', string $exception = '') |
64 | 67 | * @method static void allValidDay(mixed $value, string $message = '', string $exception = '') |
@@ -86,6 +89,7 @@ class Assert extends BaseAssert |
86 | 89 | { |
87 | 90 | use AnyURITrait; |
88 | 91 | use Base64BinaryTrait; |
| 92 | + use BooleanTrait; |
89 | 93 | use DateTrait; |
90 | 94 | use DateTimeTrait; |
91 | 95 | use DayTrait; |
|
0 commit comments