ParameterBagInterface::all()

array all() Gets the service container parameters. Return Value array An array of parameters

ParameterBagInterface::resolve()

resolve() Replaces parameter placeholders (%name%) by their values for all parameters.

ParameterBag::resolveString()

string resolveString(string $value, array $resolving = array()) Resolves parameters inside a string. Parameters string $value The string to resolve array $resolving An array of keys that are being resolved (used internally to detect circular references) Return Value string The resolved string Exceptions ParameterNotFoundException if a placeholder references a parameter that does not exist ParameterCircularReferenceException if a circular reference if detected RuntimeException w

Router::getGenerator()

UrlGeneratorInterface getGenerator() Gets the UrlGenerator instance associated with this Router. Return Value UrlGeneratorInterface A UrlGeneratorInterface instance

WrappedListener::stoppedPropagation()

stoppedPropagation()

Process::getIdleTimeout()

float|null getIdleTimeout() Gets the process idle timeout (max. time since last output). Return Value float|null The timeout in seconds or null if it's disabled

RouteCollection::setCondition()

setCondition(string $condition) Sets a condition on all routes. Existing conditions will be overridden. Parameters string $condition The condition

FileFormField

class FileFormField extends FormField FileFormField represents a file form field (an HTML file input tag). Methods __construct(DOMElement $node) Constructor. from FormField string getName() Returns the name of the field. from FormField string|array getValue() Gets the value of the field. from FormField setValue(string $value) Sets the value of the field. bool hasValue() Returns true if the field should be included in the submitted values. from FormField bool isDisabl

Crawler::html()

string html() Returns the first node of the list as HTML. Return Value string The node html Exceptions InvalidArgumentException When current node is empty

GetSetMethodNormalizer

class GetSetMethodNormalizer extends AbstractObjectNormalizer Converts between objects with getter and setter methods and arrays. The normalization process looks at all public methods and calls the ones which have a name starting with get and take no parameters. The result is a map from property names (method name stripped of the get prefix and converted to lower case) to property values. Property values are normalized through the serializer. The denormalization first looks at the constructo