|
10 | 10 | * @package simplesamlphp/xml-common |
11 | 11 | * |
12 | 12 | * @method static void validAnyURI(mixed $value, string $message = '', string $exception = '') |
| 13 | + * @method static void validBase64(mixed $value, string $message = '', string $exception = '') |
13 | 14 | * @method static void validDate(mixed $value, string $message = '', string $exception = '') |
14 | 15 | * @method static void validDateTime(mixed $value, string $message = '', string $exception = '') |
15 | 16 | * @method static void validDay(mixed $value, string $message = '', string $exception = '') |
|
33 | 34 | * @method static void validToken(mixed $value, string $message = '', string $exception = '') |
34 | 35 | * @method static void validYearMonth(mixed $value, string $message = '', string $exception = '') |
35 | 36 | * @method static void nullOrValidAnyURI(mixed $value, string $message = '', string $exception = '') |
| 37 | + * @method static void nullOrValidBase64(mixed $value, string $message = '', string $exception = '') |
36 | 38 | * @method static void nullOrValidDate(mixed $value, string $message = '', string $exception = '') |
37 | 39 | * @method static void nullOrValidDateTime(mixed $value, string $message = '', string $exception = '') |
38 | 40 | * @method static void nullOrValidDay(mixed $value, string $message = '', string $exception = '') |
|
56 | 58 | * @method static void nullOrValidToken(mixed $value, string $message = '', string $exception = '') |
57 | 59 | * @method static void nullOrValidYearMonth(mixed $value, string $message = '', string $exception = '') |
58 | 60 | * @method static void allValidAnyURI(mixed $value, string $message = '', string $exception = '') |
| 61 | + * @method static void allValidBase64(mixed $value, string $message = '', string $exception = '') |
59 | 62 | * @method static void allValidDate(mixed $value, string $message = '', string $exception = '') |
60 | 63 | * @method static void allValidDateTime(mixed $value, string $message = '', string $exception = '') |
61 | 64 | * @method static void allValidDay(mixed $value, string $message = '', string $exception = '') |
|
82 | 85 | class Assert extends BaseAssert |
83 | 86 | { |
84 | 87 | use AnyURITrait; |
| 88 | + use Base64Trait; |
85 | 89 | use DateTrait; |
86 | 90 | use DateTimeTrait; |
87 | 91 | use DayTrait; |
|
0 commit comments