Replies: 1 comment · 1 reply
|
Indeed that feels weird to me too; I opened #65321. |
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
On Symfony 8.1 I created a command accepting an ULID as option.
Such option only accepts ULIDs expressed as Base32 (ex:
01KZV4NC6TSAXC9HWZWKD07NR9) but not if provided asRFC-4122Example command
This works:
bin/console foo --ulid=01KZV4NC6TSAXC9HWZWKD07NR9This does not:
bin/console foo --ulid=019ff64a-b0da-caba-c4c7-9fe4da03d709UidValueResolver calls
Ulid::isValid()which defaults to Ulid::FORMAT_BASE_32.Is there any plan to accept ULIDs in RFC-4122 format?
All reactions