InputInterface::validate()

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

MockArraySessionStorage::setId()

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

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)

ClassMetadataFactory::hasMetadataFor()

bool hasMetadataFor(mixed $value) Checks if class has metadata. Parameters mixed $value Return Value bool

CssSelector deprecated

class CssSelector deprecated as of 2.8, will be removed in 3.0. Use the \Symfony\Component\CssSelector\CssSelectorConverter class instead. CssSelector is the main entry point of the component and can convert CSS selectors to XPath expressions. $xpath = CssSelector::toXpath('h1.foo'); This component is a port of the Python cssselect library, which is copyright Ian Bicking, see https://github.com/SimonSapin/cssselect. Copyright (c) 2007-2012 Ian Bicking and contributors. See AUTHORS for mo