class UsernamePasswordToken extends AbstractToken
UsernamePasswordToken implements a username and password token.
Methods
__construct(string|object $user, string $credentials, string $providerKey, array $roles = array()) Constructor. | ||
RoleInterface[] | getRoles() Returns the user roles. | from AbstractToken |
string | getUsername() Returns the username. | from AbstractToken |
mixed | getUser() Returns a user representation. | from AbstractToken |
setUser(mixed $user) Sets a user. | from AbstractToken | |
bool | isAuthenticated() Returns whether the user is authenticated or not. | from AbstractToken |
setAuthenticated($isAuthenticated) Sets the authenticated flag. | ||
eraseCredentials() Removes sensitive information from the token. | ||
serialize() {@inheritdoc} | ||
unserialize($serialized) {@inheritdoc} | ||
array | getAttributes() Returns the token attributes. | from AbstractToken |
setAttributes(array $attributes) Sets the token attributes. | from AbstractToken | |
bool | hasAttribute(string $name) Returns true if the attribute exists. | from AbstractToken |
mixed | getAttribute(string $name) Returns an attribute value. | from AbstractToken |
setAttribute(string $name, mixed $value) Sets an attribute. | from AbstractToken | |
string | __toString() Returns a string representation of the Token. | from AbstractToken |
mixed | getCredentials() Returns the user credentials. | |
string | getProviderKey() Returns the provider key. |
Details
__construct(string|object $user, string $credentials, string $providerKey, array $roles = array())
Constructor.
RoleInterface[] getRoles()
Returns the user roles.
string getUsername()
Returns the username.
mixed getUser()
Returns a user representation.
setUser(mixed $user)
Sets a user.
bool isAuthenticated()
Returns whether the user is authenticated or not.
setAuthenticated($isAuthenticated)
Sets the authenticated flag.
eraseCredentials()
Removes sensitive information from the token.
serialize()
{@inheritdoc}
unserialize($serialized)
{@inheritdoc}
array getAttributes()
Returns the token attributes.
setAttributes(array $attributes)
Sets the token attributes.
bool hasAttribute(string $name)
Returns true if the attribute exists.
mixed getAttribute(string $name)
Returns an attribute value.
setAttribute(string $name, mixed $value)
Sets an attribute.
string __toString()
Returns a string representation of the Token.
This is only to be used for debugging purposes.
mixed getCredentials()
Returns the user credentials.
string getProviderKey()
Returns the provider key.
Please login to continue.