W3cubDocs

/Symfony 2.7

Symfony\Component\Security\Core\Authentication\RememberMe\PersistentTokenInterface

interface PersistentTokenInterface

Interface to be implemented by persistent token classes (such as Doctrine entities representing a remember-me token)

Methods

string getClass()

Returns the class of the user.

string getUsername()

Returns the username.

string getSeries()

Returns the series.

string getTokenValue()

Returns the token value.

DateTime getLastUsed()

Returns the time the token was last used.

Details

public string getClass()

Returns the class of the user.

Return Value

string

public string getUsername()

Returns the username.

Return Value

string

public string getSeries()

Returns the series.

Return Value

string

public string getTokenValue()

Returns the token value.

Return Value

string

public DateTime getLastUsed()

Returns the time the token was last used.

Return Value

DateTime