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
+1 -29
View File
@@ -20,37 +20,11 @@ use Symfony\Component\Form\Exception\BadMethodCallException;
*/
class FormError implements \Serializable
{
/**
* @var string
*/
private $message;
/**
* The template for the error message.
*
* @var string
*/
protected $messageTemplate;
/**
* The parameters that should be substituted in the message template.
*
* @var array
*/
protected $messageParameters;
/**
* The value for error message pluralization.
*
* @var int|null
*/
protected $messagePluralization;
/**
* The cause for this error.
*
* @var mixed
*/
private $message;
private $cause;
/**
@@ -61,8 +35,6 @@ class FormError implements \Serializable
private $origin;
/**
* Constructor.
*
* Any array key in $messageParameters will be used as a placeholder in
* $messageTemplate.
*