Unlock this challenge:
Your "user" class can be called whatever you want... and look however you want... as long as it implements UserInterface. In Symfony 6, what info does UserInterface require your "user" class to provide?
UserInterface
UserInterface requires your user to have a "user identifier" and an array of "roles".
UserInterface requires your user to have a "user identifier", an array of "roles" and a "hashed password".
UserInterface requires your user to have a "username", "user identifier", an array of "roles" and a "hashed password".