|
311 | 311 | * @method static void nullOrThrows(Closure|null $expression, string $class, string $message = '', string $exception = '') |
312 | 312 | * @method static void allThrows(Closure[] $expression, string $class, string $message = '', string $exception = '') |
313 | 313 | * |
314 | | - * @method static void validHexBinary(mixed $value, string $message = '', string $exception = '') |
315 | | - * @method static void validNMToken(mixed $value, string $message = '', string $exception = '') |
316 | | - * @method static void validNMTokens(mixed $value, string $message = '', string $exception = '') |
317 | | - * @method static void validDuration(mixed $value, string $message = '', string $exception = '') |
318 | | - * @method static void stringPlausibleBase64(mixed $value, string $message = '', string $exception = '') |
319 | | - * @method static void validDateTime(mixed $value, string $message = '', string $exception = '') |
| 314 | + * @method static void validBase64(mixed $value, string $message = '', string $exception = '') |
320 | 315 | * @method static void notInArray(mixed $value, array $values, string $message = '', string $exception = '') |
321 | 316 | * @method static void validURN(mixed $value, string $message = '', string $exception = '') |
322 | 317 | * @method static void validURI(mixed $value, string $message = '', string $exception = '') |
323 | 318 | * @method static void validURL(mixed $value, string $message = '', string $exception = '') |
324 | | - * @method static void validNCName(mixed $value, string $message = '', string $exception = '') |
325 | | - * @method static void validQName(mixed $value, string $message = '', string $exception = '') |
326 | | - * @method static void nullOrValidHexBinary(mixed $value, string $message = '', string $exception = '') |
327 | | - * @method static void nullOrValidNMToken(mixed $value, string $message = '', string $exception = '') |
328 | | - * @method static void nullOrValidNMTokens(mixed $value, string $message = '', string $exception = '') |
329 | | - * @method static void nullOrValidDuration(mixed $value, string $message = '', string $exception = '') |
330 | | - * @method static void nullOrStringPlausibleBase64(mixed $value, string $message = '', string $exception = '') |
331 | | - * @method static void nullOrValidDateTime(mixed $value, string $message = '', string $exception = '') |
| 319 | + * @method static void nullOrValidBase64(mixed $value, string $message = '', string $exception = '') |
332 | 320 | * @method static void nullOrNotInArray(mixed $value, array $values, string $message = '', string $exception = '') |
333 | 321 | * @method static void nullOrValidURN(mixed $value, string $message = '', string $exception = '') |
334 | 322 | * @method static void nullOrValidURI(mixed $value, string $message = '', string $exception = '') |
335 | 323 | * @method static void nullOrValidURL(mixed $value, string $message = '', string $exception = '') |
336 | | - * @method static void nullOrValidNCName(mixed $value, string $message = '', string $exception = '') |
337 | | - * @method static void nullOrValidQName(mixed $value, string $message = '', string $exception = '') |
338 | | - * @method static void allValidHexBinary(mixed $value, string $message = '', string $exception = '') |
339 | | - * @method static void allValidNMToken(mixed $value, string $message = '', string $exception = '') |
340 | | - * @method static void allValidNMTokens(mixed $value, string $message = '', string $exception = '') |
341 | | - * @method static void allValidDuration(mixed $value, string $message = '', string $exception = '') |
342 | | - * @method static void allStringPlausibleBase64(mixed $value, string $message = '', string $exception = '') |
343 | | - * @method static void allValidDateTime(mixed $value, string $message = '', string $exception = '') |
| 324 | + * @method static void allValidBase64(mixed $value, string $message = '', string $exception = '') |
344 | 325 | * @method static void allNotInArray(mixed $value, array $values, string $message = '', string $exception = '') |
345 | | - * @method static void allValidURN(mixed $value, string $message = '', string $exception = '') |
346 | | - * @method static void allValidURI(mixed $value, string $message = '', string $exception = '') |
347 | | - * @method static void allValidURL(mixed $value, string $message = '', string $exception = '') |
348 | | - * @method static void allValidNCName(mixed $value, string $message = '', string $exception = '') |
349 | | - * @method static void allValidQName(mixed $value, string $message = '', string $exception = '') |
350 | 326 | */ |
351 | 327 | final class Assert |
352 | 328 | { |
353 | | - use CustomAssertionTrait; |
| 329 | + use Base64Trait; |
| 330 | + use NotInArrayTrait; |
| 331 | + use URITrait; |
354 | 332 |
|
355 | 333 |
|
356 | 334 | /** |
|
0 commit comments