DoctrineTokenProvider::updateToken()

updateToken(string $series, string $tokenValue, DateTime $lastUsed) Updates the token according to this data. Parameters string $series string $tokenValue DateTime $lastUsed Exceptions TokenNotFoundException if the token is not found

DoctrineTokenProvider

class DoctrineTokenProvider implements TokenProviderInterface This class provides storage for the tokens that is set in "remember me" cookies. This way no password secrets will be stored in the cookies on the client machine, and thus the security is improved. This depends only on doctrine in order to get a database connection and to do the conversion of the datetime column. In order to use this class, you need the following table in your database: CREATE TABLE rememberme_token ( series char(

DoctrineProvider

class DoctrineProvider extends CacheProvider Methods __construct(CacheItemPoolInterface $pool) Details __construct(CacheItemPoolInterface $pool) Parameters CacheItemPoolInterface $pool

DoctrineParserCache::fetch()

ParsedExpression|null fetch(string $key) Fetches an expression from the cache. Parameters string $key The cache key Return Value ParsedExpression|null

DoctrineParserCache

class DoctrineParserCache implements ParserCacheInterface Methods __construct(Cache $cache) ParsedExpression|null fetch(string $key) Fetches an expression from the cache. save(string $key, ParsedExpression $expression) Saves an expression in the cache. Details __construct(Cache $cache) Parameters Cache $cache ParsedExpression|null fetch(string $key) Fetches an expression from the cache. Par

DoctrineParserCache::save()

save(string $key, ParsedExpression $expression) Saves an expression in the cache. Parameters string $key The cache key ParsedExpression $expression A ParsedExpression instance to store in the cache

DoctrineTestHelper

class DoctrineTestHelper Provides utility functions needed in tests. Methods static EntityManager createTestEntityManager() Returns an entity manager for testing. Details static EntityManager createTestEntityManager() Returns an entity manager for testing. Return Value EntityManager

DoctrineOrmTypeGuesser::guessType()

TypeGuess|null guessType(string $class, string $property) Returns a field guess for a property name of a class. Parameters string $class The fully qualified class name string $property The name of the property to guess for Return Value TypeGuess|null A guess for the field's type and options

DoctrineOrmTypeGuesser::guessMaxLength()

ValueGuess|null guessMaxLength(string $class, string $property) Returns a guess about the field's maximum length. Parameters string $class The fully qualified class name string $property The name of the property to guess for Return Value ValueGuess|null A guess for the field's maximum length

DoctrineOrmTypeGuesser::guessRequired()

ValueGuess guessRequired(string $class, string $property) Returns a guess whether a property of a class is required. Parameters string $class The fully qualified class name string $property The name of the property to guess for Return Value ValueGuess A guess for the field's required setting