MissingResourceException

class MissingResourceException extends RuntimeException Thrown when an invalid entry of a resource bundle was requested.

LazyChoiceList

class LazyChoiceList implements ChoiceListInterface A choice list that loads its choices lazily. The choices are fetched using a {@link ChoiceLoaderInterface} instance. If only {@link getChoicesForValues()} or {@link getValuesForChoices()} is called, the choice list is only loaded partially for improved performance. Once {@link getChoices()} or {@link getValues()} is called, the list is loaded fully. Methods __construct(ChoiceLoaderInterface $loader, callable $value = null) Creates a laz

DumpDataCollector::getDumpsCount()

getDumpsCount()

Response::getProtocolVersion()

string getProtocolVersion() Gets the HTTP protocol version. Return Value string The HTTP protocol version

Filesystem::makePathRelative()

string makePathRelative(string $endPath, string $startPath) Given an existing path, convert it to a path relative to a given starting path. Parameters string $endPath Absolute path of target string $startPath Absolute path where traversal begins Return Value string Path of target relative to starting path

StopwatchPeriod::getEndTime()

int getEndTime() Gets the relative time of the end of the period. Return Value int The time (in milliseconds)

ContainerBuilder::findTaggedServiceIds()

array findTaggedServiceIds(string $name) Returns service ids for a given tag. Example: $container->register('foo')->addTag('my.tag', array('hello' => 'world')); $serviceIds = $container->findTaggedServiceIds('my.tag'); foreach ($serviceIds as $serviceId => $tags) { foreach ($tags as $tag) { echo $tag['hello']; } } Parameters string $name The tag name Return Value array An array of tags

RoutingExtension::getFunctions()

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

ArgumentMetadata::getName()

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

Store

class Store implements StoreInterface Store implements all the logic for storing cache metadata (Request and Response headers). Methods __construct(string $root) Constructor. cleanup() Cleanups storage. bool|string lock(Request $request) Tries to lock the cache for a given Request, without blocking. bool unlock(Request $request) Releases the lock for the given Request. bool isLocked(Request $request) Returns whether or not a lock exists. Response|null lookup(Requ