Upgrade 1-11.38

This commit is contained in:
xesmyd
2026-03-30 14:10:30 +02:00
parent f2a7e6d1fc
commit ac648ef29d
24665 changed files with 69682 additions and 2205004 deletions
+5 -18
View File
@@ -35,8 +35,6 @@ interface FormConfigBuilderInterface extends FormConfigInterface
/**
* Adds an event subscriber for events on this form.
*
* @param EventSubscriberInterface $subscriber The subscriber to attach
*
* @return $this The configuration object
*/
public function addEventSubscriber(EventSubscriberInterface $subscriber);
@@ -50,7 +48,7 @@ interface FormConfigBuilderInterface extends FormConfigInterface
* view to the normalized format.
*
* @param DataTransformerInterface $viewTransformer
* @param bool $forcePrepend if set to true, prepend instead of appending
* @param bool $forcePrepend If set to true, prepend instead of appending
*
* @return $this The configuration object
*/
@@ -72,7 +70,7 @@ interface FormConfigBuilderInterface extends FormConfigInterface
* normalized to the model format.
*
* @param DataTransformerInterface $modelTransformer
* @param bool $forceAppend if set to true, append instead of prepending
* @param bool $forceAppend If set to true, append instead of prepending
*
* @return $this The configuration object
*/
@@ -98,8 +96,6 @@ interface FormConfigBuilderInterface extends FormConfigInterface
/**
* Sets the attributes.
*
* @param array $attributes The attributes
*
* @return $this The configuration object
*/
public function setAttributes(array $attributes);
@@ -107,8 +103,6 @@ interface FormConfigBuilderInterface extends FormConfigInterface
/**
* Sets the data mapper used by the form.
*
* @param DataMapperInterface $dataMapper
*
* @return $this The configuration object
*/
public function setDataMapper(DataMapperInterface $dataMapper = null);
@@ -152,9 +146,8 @@ interface FormConfigBuilderInterface extends FormConfigInterface
/**
* Sets the property path that the form should be mapped to.
*
* @param null|string|PropertyPathInterface $propertyPath
* The property path or null if the path should be set
* automatically based on the form's name.
* @param null|string|PropertyPathInterface $propertyPath The property path or null if the path should be set
* automatically based on the form's name
*
* @return $this The configuration object
*/
@@ -174,7 +167,7 @@ interface FormConfigBuilderInterface extends FormConfigInterface
* Sets whether the form's data should be modified by reference.
*
* @param bool $byReference Whether the data should be
* modified by reference.
* modified by reference
*
* @return $this The configuration object
*/
@@ -203,8 +196,6 @@ interface FormConfigBuilderInterface extends FormConfigInterface
/**
* Set the types.
*
* @param ResolvedFormTypeInterface $type The type of the form
*
* @return $this The configuration object
*/
public function setType(ResolvedFormTypeInterface $type);
@@ -233,8 +224,6 @@ interface FormConfigBuilderInterface extends FormConfigInterface
/**
* Sets the form factory used for creating new forms.
*
* @param FormFactoryInterface $formFactory The form factory
*/
public function setFormFactory(FormFactoryInterface $formFactory);
@@ -259,8 +248,6 @@ interface FormConfigBuilderInterface extends FormConfigInterface
/**
* Sets the request handler used by the form.
*
* @param RequestHandlerInterface $requestHandler
*
* @return $this The configuration object
*/
public function setRequestHandler(RequestHandlerInterface $requestHandler);