Merge pull request #361 from slevomat/patch-1

Serialization should not use internal codec
This commit is contained in:
Ben Ramsey
2021-08-06 16:25:27 -05:00
committed by GitHub
2 changed files with 20 additions and 1 deletions
+1 -1
View File
@@ -285,7 +285,7 @@ class Uuid implements UuidInterface
*/
public function serialize(): string
{
return $this->getBytes();
return $this->getFields()->getBytes();
}
/**