Definition::setArguments()

Definition setArguments(array $arguments) Sets the arguments to pass to the service constructor/factory method. Parameters array $arguments An array of arguments Return Value Definition The current instance

OptionsResolver::setAllowedTypes()

OptionsResolver setAllowedTypes(string $option, string|string[] $allowedTypes) Sets allowed types for an option. Any type for which a corresponding is_() function exists is acceptable. Additionally, fully-qualified class or interface names may be passed. Parameters string $option The option name string|string[] $allowedTypes One or more accepted types Return Value OptionsResolver This instance Exceptions UndefinedOptionsException If the option is undefined AccessException If c

FormDataExtractorInterface::extractDefaultData()

array extractDefaultData(FormInterface $form) Extracts the default data of a form. Parameters FormInterface $form The form Return Value array Information about the form's default data

RequestContext::setBaseUrl()

RequestContext setBaseUrl(string $baseUrl) Sets the base URL. Parameters string $baseUrl The base URL Return Value RequestContext The current instance, implementing a fluent interface

Input::getArgument()

mixed getArgument(string $name) Returns the argument value for a given argument name. Parameters string $name The argument name Return Value mixed The argument value Exceptions InvalidArgumentException When argument given doesn't exist

FormDataCollectorInterface::collectSubmittedData()

collectSubmittedData(FormInterface $form) Stores the submitted data of the given form and its children. Parameters FormInterface $form A root form

ConfigDataCollector::getApplicationName()

getApplicationName()

NegationNode

class NegationNode extends AbstractNode Represents a ":not()" node. This component is a port of the Python cssselect library, which is copyright Ian Bicking, see https://github.com/SimonSapin/cssselect. Methods string getNodeName() from AbstractNode __construct(NodeInterface $selector, NodeInterface $subSelector) NodeInterface getSelector() NodeInterface getSubSelector() Specificity getSpecificity() Returns node's specificity. string __toString() Returns node'

PhpMatcherDumper::addExpressionLanguageProvider()

addExpressionLanguageProvider(ExpressionFunctionProviderInterface $provider) Parameters ExpressionFunctionProviderInterface $provider

ResolvedFormTypeInterface::createView()

FormView createView(FormInterface $form, FormView $parent = null) Creates a new form view for a form of this type. Parameters FormInterface $form The form to create a view for FormView $parent The parent view or null Return Value FormView The created form view