From e4440e2592e6f98c99123355b01bb768229f5b4d Mon Sep 17 00:00:00 2001 From: Tim van Dijen Date: Tue, 7 Jan 2025 23:59:57 +0100 Subject: [PATCH] Make class extendable --- src/Assert.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Assert.php b/src/Assert.php index 1cfc5dc..1e43176 100644 --- a/src/Assert.php +++ b/src/Assert.php @@ -324,7 +324,7 @@ * @method static void allValidBase64(mixed $value, string $message = '', string $exception = '') * @method static void allNotInArray(mixed $value, array $values, string $message = '', string $exception = '') */ -final class Assert +class Assert { use Base64Trait; use NotInArrayTrait;