From f35e26e1201ec41be19404e23f87e53cf747ed3a Mon Sep 17 00:00:00 2001 From: Tim van Dijen Date: Thu, 9 Jan 2025 13:10:04 +0100 Subject: [PATCH] Add missing @method annotations --- src/Assert.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/Assert.php b/src/Assert.php index 1e43176..ccf751b 100644 --- a/src/Assert.php +++ b/src/Assert.php @@ -323,6 +323,9 @@ * @method static void nullOrValidURL(mixed $value, string $message = '', string $exception = '') * @method static void allValidBase64(mixed $value, string $message = '', string $exception = '') * @method static void allNotInArray(mixed $value, array $values, string $message = '', string $exception = '') + * @method static void allValidURN(mixed $value, string $message = '', string $exception = '') + * @method static void allValidURI(mixed $value, string $message = '', string $exception = '') + * @method static void allValidURL(mixed $value, string $message = '', string $exception = '') */ class Assert {