-
Notifications
You must be signed in to change notification settings - Fork 2
Open
Labels
enhancementNew feature or requestNew feature or requesthelp wantedExtra attention is neededExtra attention is needed
Description
Here is test code:
$uuidOrginal = \Ramsey\Uuid\Uuid::uuid7()->toString();
$uuidShort = \Expose\Converter\ConverterFactory::getConverter()->encode($uuidOrginal);
$uuidDecoded = \Expose\Converter\ConverterFactory::getConverter()->decode($uuidShort);
debug($uuidOrginal === $uuidDecoded);debug is returning false when default \Expose\Converter\Short is used
Changing to \Expose\Converter\KeikoShort by adding line below makes debug returns true as expected
//in config
'Expose.converter' => \Expose\Converter\KeikoShort::class,Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or requesthelp wantedExtra attention is neededExtra attention is needed