ContextListener::handle()

handle(GetResponseEvent $event) Reads the Security Token from the session. Parameters GetResponseEvent $event

User::getUsername()

string getUsername() Returns the username used to authenticate the user. Return Value string The username

MockArraySessionStorage::setId()

setId(string $id) Sets the session ID. Parameters string $id

InputInterface::validate()

validate() Validates the input. Exceptions RuntimeException When not enough arguments are given

TokenStorageInterface::hasToken()

bool hasToken(string $tokenId) Checks whether a token with the given token ID exists. Parameters string $tokenId The token ID Return Value bool Whether a token exists with the given ID

HtmlExtension::getFunctionTranslators()

callable[] getFunctionTranslators() Returns function translators. Return Value callable[]

SessionBagInterface::clear()

mixed clear() Clears out data from bag. Return Value mixed Whatever data was contained

SessionTokenStorage::removeToken()

string|null removeToken(string $tokenId) Removes a CSRF token. Parameters string $tokenId The token ID Return Value string|null Returns the removed token if one existed, NULL otherwise

SessionBagInterface

interface SessionBagInterface Session Bag store. Methods string getName() Gets this bag's name. initialize(array $array) Initializes the Bag. string getStorageKey() Gets the storage key for this bag. mixed clear() Clears out data from bag. Details string getName() Gets this bag's name. Return Value string initialize(array $array) Initializes the Bag. Parameters array $array

ContainerAwareLoader

class ContainerAwareLoader extends Loader Doctrine data fixtures loader that injects the service container into fixture objects that implement ContainerAwareInterface. Note: Use of this class requires the Doctrine data fixtures extension, which is a suggested dependency for Symfony. Methods __construct(ContainerInterface $container) Constructor. addFixture(FixtureInterface $fixture) {@inheritdoc} Details __construct(ContainerInterface $container)