Event::stopPropagation()

stopPropagation() Stops the propagation of the event to further event listeners. If multiple event listeners are connected to the same event, no further event listener will be triggered once any trigger calls stopPropagation().

Response::setCharset()

Response setCharset(string $charset) Sets the response charset. Parameters string $charset Character set Return Value Response

GlobalVariables::getUser()

mixed getUser() Returns the current user. Return Value mixed See also TokenInterface::getUser()

Crawler::images()

Image[] images() Returns an array of Image objects for the nodes in the list. Return Value Image[] An array of Image instances

TokenStorageInterface::getToken()

string getToken(string $tokenId) Reads a stored CSRF token. Parameters string $tokenId The token ID Return Value string The stored token Exceptions TokenNotFoundException If the token ID does not exist

ClassMapGenerator::dump()

static dump(array|string $dirs, string $file) Generate a class map file. Parameters array|string $dirs Directories or a single path to search in string $file The name of the class map file

TokenStorageInterface::setToken()

setToken(string $tokenId, string $token) Stores a CSRF token. Parameters string $tokenId The token ID string $token The CSRF token

ExecutionContext deprecated::getMetadataFor()

getMetadataFor($value) {@inheritdoc} Parameters $value

DoctrineAclCache::evictFromCacheByIdentity()

evictFromCacheByIdentity(ObjectIdentityInterface $oid) Removes an ACL from the cache The ACL which is returned, must reference the passed object identity. Parameters ObjectIdentityInterface $oid

Definition::hasMethodCall()

bool hasMethodCall(string $method) Check if the current definition has a given method to call after service initialization. Parameters string $method The method name to search for Return Value bool