Symfony2 API
Class

Symfony\Component\Security\Core\Authentication\RememberMe\InMemoryTokenProvider

class InMemoryTokenProvider implements TokenProviderInterface

This class is used for testing purposes, and is not really suited for production.

Methods

PersistentTokenInterface loadTokenBySeries(string $series)

Loads the active token for the given series.

updateToken(string $series, string $tokenValue, DateTime $lastUsed)

Updates the token according to this data.

deleteTokenBySeries(string $series)

Deletes all tokens belonging to series.

createNewToken(PersistentTokenInterface $token)

Creates a new token.

Details

at line 25
public PersistentTokenInterface loadTokenBySeries(string $series)

Loads the active token for the given series.

Parameters

string $series

Return Value

PersistentTokenInterface

Exceptions

TokenNotFoundException if the token is not found

at line 34
public updateToken(string $series, string $tokenValue, DateTime $lastUsed)

Updates the token according to this data.

Parameters

string $series
string $tokenValue
DateTime $lastUsed

at line 50
public deleteTokenBySeries(string $series)

Deletes all tokens belonging to series.

Parameters

string $series

at line 55
public createNewToken(PersistentTokenInterface $token)

Creates a new token.

Parameters

PersistentTokenInterface $token