DoctrineTokenProvider::createNewToken()

createNewToken(PersistentTokenInterface $token) Creates a new token. Parameters PersistentTokenInterface $token

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(

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

DoctrineProvider

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

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

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

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::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

DoctrineOrmTypeGuesser::guessPattern()

ValueGuess|null guessPattern(string $class, string $property) Returns a guess about the field's pattern. When you have a min value, you guess a min length of this min (LOW_CONFIDENCE) , lines below If this value is a float type, this is wrong so you guess null with MEDIUM_CONFIDENCE to override the previous guess. Example: You want a float greater than 5, 4.512313 is not valid but length(4.512314) > length(5) Parameters string $class The fully qualified class name string $