RepeatedPass::process()

process(ContainerBuilder $container) Process the repeatable passes that run more than once. Parameters ContainerBuilder $container

CurrencyBundleInterface::getRoundingIncrement()

float|int|null getRoundingIncrement(string $currency) Returns the rounding increment of a currency. The rounding increment indicates to which number a currency is rounded. For example, 1230 rounded to the nearest 50 is 1250. 1.234 rounded to the nearest 0.65 is 1.3. Parameters string $currency A currency code (e.g. "EUR") Return Value float|int|null The rounding increment or NULL if not found

ValueInterface

interface ValueInterface Methods string render() Renders string representation of expression. string renderPattern() Renders string representation of pattern. bool isCaseSensitive() Returns value case sensitivity. int getType() Returns expression type. ValueInterface prepend(string $expr) ValueInterface append(string $expr) Details string render() Renders string representation of expression. Return Value string

FormDataCollector::collectSubmittedData()

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

PropertyAccessor::setValue()

setValue(object|array $objectOrArray, string|PropertyPathInterface $propertyPath, mixed $value) Sets the value at the end of the property path of the object graph. Example: use Symfony\Component\PropertyAccess\PropertyAccess; $propertyAccessor = PropertyAccess::createPropertyAccessor(); echo $propertyAccessor->setValue($object, 'child.name', 'Fabien'); // equals echo $object->getChild()->setName('Fabien'); This method first tries to find a public setter for each property

BundleInterface::getParent()

string getParent() Returns the bundle name that this bundle overrides. Despite its name, this method does not imply any parent/child relationship between the bundles, just a way to extend and override an existing bundle. Return Value string The Bundle name it overrides or null if no parent

JsonResponse::setEncodingOptions()

JsonResponse setEncodingOptions(int $encodingOptions) Sets options used while encoding data to JSON. Parameters int $encodingOptions Return Value JsonResponse

DOMCaster::castTypeinfo()

static castTypeinfo(DOMTypeinfo $dom, array $a, Stub $stub, $isNested) Parameters DOMTypeinfo $dom array $a Stub $stub $isNested

InputDefinition::getOption()

InputOption getOption(string $name) Returns an InputOption by name. Parameters string $name The InputOption name Return Value InputOption A InputOption object Exceptions InvalidArgumentException When option given doesn't exist

Component\Form\Extension\Core\ChoiceList

Classes ChoiceList A choice list for choices of arbitrary data types. LazyChoiceList A choice list that is loaded lazily ObjectChoiceList A choice list for object choices. SimpleChoiceList A choice list for choices of type string or integer. Interfaces ChoiceListInterface Contains choices that can be selected in a form field.