class RememberMeToken extends AbstractToken
Authentication Token for "Remember-Me".
__construct(UserInterface $user, string $providerKey, string $secret) | ||
Role[] | getRoles() Returns the user roles. | from AbstractToken |
string | getUsername() Returns the username. | from AbstractToken |
string|object | getUser() Returns a user representation. | from AbstractToken |
setUser(string|object $user) Sets the user in the token. | from AbstractToken | |
bool | isAuthenticated() Returns whether the user is authenticated or not. | from AbstractToken |
setAuthenticated($authenticated) Sets the authenticated flag. | ||
eraseCredentials() Removes sensitive information from the token. | from AbstractToken | |
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 |
string | getProviderKey() Returns the provider secret. | |
string | getSecret() Returns the secret. | |
mixed | getCredentials() Returns the user credentials. |
UserInterface | $user | |
string | $providerKey | |
string | $secret | A secret used to make sure the token is created by the app and not by a malicious client |
InvalidArgumentException |
Returns the user roles.
Role[] | An array of Role instances |
Returns the username.
string |
Returns a user representation.
string|object | Can be a UserInterface instance, an object implementing a __toString method, or the username as a regular string |
Sets the user in the token.
The user can be a UserInterface instance, or an object implementing a __toString method or the username as a regular string.
string|object | $user | The user |
InvalidArgumentException |
Returns whether the user is authenticated or not.
bool | true if the token has been authenticated, false otherwise |
Sets the authenticated flag.
$authenticated |
Removes sensitive information from the token.
{@inheritdoc}
{@inheritdoc}
$serialized |
Returns the token attributes.
array | The token attributes |
Sets the token attributes.
array | $attributes | The token attributes |
Returns true if the attribute exists.
string | $name | The attribute name |
bool | true if the attribute exists, false otherwise |
Returns an attribute value.
string | $name | The attribute name |
mixed | The attribute value |
InvalidArgumentException | When attribute doesn't exist for this token |
Sets an attribute.
string | $name | The attribute name |
mixed | $value | The attribute value |
Returns a string representation of the Token.
This is only to be used for debugging purposes.
string |
Returns the provider secret.
string | The provider secret |
Returns the secret.
string |
Returns the user credentials.
mixed | The user credentials |
© 2004–2017 Fabien Potencier
Licensed under the MIT License.
https://api.symfony.com/4.1/Symfony/Component/Security/Core/Authentication/Token/RememberMeToken.html