Skip to content

Commit

Permalink
fix: distinct default namespace values
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
uwla committed Nov 20, 2024
1 parent cd4af12 commit ebcb808
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Traits/Taggable.php
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ protected static function getTaggedClass(): string
*/
public function getTagNamespace(): string|null
{
return '';
return null;
}

/**
Expand Down

0 comments on commit ebcb808

Please sign in to comment.