RealServiceInstantiator

class RealServiceInstantiator implements InstantiatorInterface {@inheritdoc} Noop proxy instantiator - simply produces the real service instead of a proxy instance. Methods object instantiateProxy(ContainerInterface $container, Definition $definition, string $id, callable $realInstantiator) Instantiates a proxy object. Details object instantiateProxy(ContainerInterface $container, Definition $definition, string $id, callable $realInstantiator)

SvnRepository::download()

static SvnRepository download(string $url, string $targetDir) Downloads the ICU data for the given version. Parameters string $url The URL to download from string $targetDir The directory in which to store the repository Return Value SvnRepository The directory where the data is stored Exceptions RuntimeException If an error occurs during the download.

MetadataBag::getLifetime()

int getLifetime() Gets the lifetime that the session cookie was set with. Return Value int

Component\Asset\Context

Classes NullContext A context that does nothing. RequestStackContext Uses a RequestStack to populate the context. Interfaces ContextInterface Holds information about the current request.

TimeType::buildView()

buildView(FormView $view, FormInterface $form, array $options) Builds the form view. This method is called for each type in the hierarchy starting from the top most type. Type extensions can further modify the view. A view of a form is built before the views of the child forms are built. This means that you cannot access child views in this method. If you need to do so, move your logic to {@link finishView()} instead. Parameters FormView $view The view FormInterface $form The form

ConstraintViolationList

class ConstraintViolationList implements IteratorAggregate, ConstraintViolationListInterface Default implementation of {@ConstraintViolationListInterface}. Methods __construct(array $violations = array()) Creates a new constraint violation list. string __toString() Converts the violation into a string for debugging purposes. add(ConstraintViolationInterface $violation) Adds a constraint violation to this list. addAll(ConstraintViolationListInterface $otherList) Merges an e

Scope deprecated::getParentName()

getParentName()

Transformer::getReverseMatchingRegExp()

abstract string getReverseMatchingRegExp(int $length) Returns a reverse matching regular expression of a string generated by format(). Parameters int $length The length of the value to be reverse matched Return Value string The reverse matching regular expression

FormFactoryInterface::create()

FormInterface create(string $type = 'Symfony\\Component\\Form\\Extension\\Core\\Type\\FormType', mixed $data = null, array $options = array()) Returns a form. Parameters string $type The type of the form mixed $data The initial data array $options The options Return Value FormInterface The form named after the type Exceptions InvalidOptionsException if any given option is not applicable to the given type See also createBuilder()

FormRendererEngineInterface::setTheme()

setTheme(FormView $view, mixed $themes) Sets the theme(s) to be used for rendering a view and its children. Parameters FormView $view The view to assign the theme(s) to mixed $themes The theme(s). The type of these themes is open to the implementation.