UrlType::getParent()

string|null getParent() Returns the name of the parent type. Return Value string|null The name of the parent type if any, null otherwise

OptionsResolverInterface deprecated::setAllowedValues()

OptionsResolverInterface setAllowedValues(array $allowedValues) Sets allowed values for a list of options. Parameters array $allowedValues A list of option names as keys and arrays with values acceptable for that option as values. Return Value OptionsResolverInterface The resolver instance. Exceptions InvalidOptionsException If an option has not been defined (see {@link isKnown()}) for which an allowed value is set.

Acl::updateObjectFieldAuditing()

updateObjectFieldAuditing(int $index, string $field, bool $auditSuccess, bool $auditFailure) Updates auditing for object-field-based ACE Parameters int $index string $field bool $auditSuccess bool $auditFailure

FormError::serialize()

string serialize() Serializes this error. Return Value string The serialized error

RequestDataCollector::getSessionAttributes()

getSessionAttributes()

Definition::addAutowiringType()

Definition addAutowiringType(string $type) Adds a type that will default to this definition. Parameters string $type Return Value Definition The current instance

TokenizerPatterns::getHashPattern()

string getHashPattern() Return Value string

FormConfigInterface::getAttributes()

array getAttributes() Returns additional attributes of the form. Return Value array An array of key-value combinations

ButtonTypeInterface

interface ButtonTypeInterface implements FormTypeInterface A type that should be converted into a {@link Button} instance. Methods buildForm(FormBuilderInterface $builder, array $options) Builds the form. from FormTypeInterface buildView(FormView $view, FormInterface $form, array $options) Builds the form view. from FormTypeInterface finishView(FormView $view, FormInterface $form, array $options) Finishes the form view. from FormTypeInterface setDefaultOptions(OptionsResolver

FormDataCollector::associateFormWithView()

associateFormWithView(FormInterface $form, FormView $view) Specifies that the given objects represent the same conceptual form. Parameters FormInterface $form A form object FormView $view A view object