You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
UUID named used in Ting is not really an UUID, it's an UID.
So as suggest on Slack Symfony we should do this :
pierstoval @syrm yes, by adding a generateUID() method that will do the work, and making generateUUID() call the generateUID() method. Also, make generateUUID() deprecated & trigger a E_USER_DEPRECATED error, like it's often done in many projects 🙂 (edited)
Like we have in Symfony, this deprecation error may say generateUUID() method is deprecated as of version x.y and will be removed in {x+1}.0
this way you can just rise a minor version with new method + deprecation and respect BC for all projects
The text was updated successfully, but these errors were encountered:
Original report by Sylvain Robez-Masson (Bitbucket: srobez-masson, ).
UUID named used in Ting is not really an UUID, it's an UID.
So as suggest on Slack Symfony we should do this :
pierstoval
@syrm yes, by adding a
generateUID()
method that will do the work, and makinggenerateUUID()
call thegenerateUID()
method. Also, makegenerateUUID()
deprecated & trigger aE_USER_DEPRECATED
error, like it's often done in many projects 🙂 (edited)Like we have in Symfony, this deprecation error may say
generateUUID() method is deprecated as of version x.y and will be removed in {x+1}.0
this way you can just rise a minor version with new method + deprecation and respect BC for all projects
The text was updated successfully, but these errors were encountered: