From ebcb808d1251eaa79bf81fc7a5bda3ec5af7b545 Mon Sep 17 00:00:00 2001 From: uwla Date: Wed, 20 Nov 2024 15:52:33 -0300 Subject: [PATCH] fix: distinct default namespace values In some functions, the default namespace was null, while in others was an empty string. The default values must be consistent for the package to work when a specific value is not provided. --- src/Traits/Taggable.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Traits/Taggable.php b/src/Traits/Taggable.php index eefdad6..9d9198f 100644 --- a/src/Traits/Taggable.php +++ b/src/Traits/Taggable.php @@ -74,7 +74,7 @@ protected static function getTaggedClass(): string */ public function getTagNamespace(): string|null { - return ''; + return null; } /**