LazyChoiceList::getValuesForChoices()

string[] getValuesForChoices(array $choices) Returns the values corresponding to the given choices. The values are returned with the same keys and in the same order as the corresponding choices in the given array. Parameters array $choices An array of choices. Non-existing choices in this array are ignored Return Value string[] An array of choice values

ProgressHelper deprecated::setRedrawFrequency()

setRedrawFrequency(int $freq) Sets the redraw frequency. Parameters int $freq The frequency in steps

ConfigCacheInterface::getPath()

string getPath() Gets the cache file path. Return Value string The cache file path

TranslationDataCollector::getMessages()

array getMessages() Return Value array

Process::addOutput()

addOutput(string $line) Adds a line to the STDOUT stream. Parameters string $line The line to append

LogoutUrlHelper::getLogoutPath()

string getLogoutPath(string|null $key) Generates the absolute logout path for the firewall. Parameters string|null $key The firewall key or null to use the current firewall key Return Value string The logout path

EncoderInterface

interface EncoderInterface Defines the interface of encoders. Methods scalar encode(mixed $data, string $format, array $context = array()) Encodes data into the given format. bool supportsEncoding(string $format) Checks whether the serializer can encode to given format. Details scalar encode(mixed $data, string $format, array $context = array()) Encodes data into the given format. Parameters mixed $data Data to encode string $format Form

SaveSessionListener

class SaveSessionListener implements EventSubscriberInterface Saves the session, in case it is still open, before sending the response/headers. This ensures several things in case the developer did not save the session explicitly: If a session save handler without locking is used, it ensures the data is available on the next request, e.g. after a redirect. PHPs auto-save at script end via sessionregistershutdown is executed after fastcgifinishrequest. So in this case the data could be missin

ArgumentMetadata::getName()

string getName() Returns the name as given in PHP, $foo would yield "foo". Return Value string

RoutingExtension::getFunctions()

array getFunctions() Returns a list of functions to add to the existing list. Return Value array An array of functions