diff --git a/core/.deprecation-ignore.txt b/core/.deprecation-ignore.txt index 481aa1787a37c011b7bc65b76a995bccd6f9c4aa..30ceb01a7d690a2712193602926dc21d4a21b43d 100644 --- a/core/.deprecation-ignore.txt +++ b/core/.deprecation-ignore.txt @@ -23,10 +23,6 @@ # testing using \Symfony\Component\ErrorHandler\DebugClassLoader. %The "Twig\\Environment::getTemplateClass\(\)" method is considered internal\. It may change without further notice\. You should not extend it from "Drupal\\Core\\Template\\TwigEnvironment"\.% -# Skip deprecations warning for overriding Symfony properties in validation -# constraints. See https://www.drupal.org/project/drupal/issues/3425150. -%The "Symfony\\Component\\Validator\\Constraints\\[^"]+::\$[^"]+" property is considered final. You should not override it in "[^"]+"% - # Drupal 11. %Drupal\\Core\\Form\\FormBuilder::getForm\(\).* will require a new "mixed \.\.\. \$args" argument in the next major version of its interface% %Drupal\\Core\\Form\\FormBuilder::submitForm\(\).* will require a new "mixed \.\.\. \$args" argument in the next major version of its interface% diff --git a/core/lib/Drupal/Core/Validation/Plugin/Validation/Constraint/AllowedValuesConstraint.php b/core/lib/Drupal/Core/Validation/Plugin/Validation/Constraint/AllowedValuesConstraint.php index c83979343ede41159a0bdff1d3cbd811e2878caf..18acb7abd7bc6fa5169652bf3e6daa59952e5179 100644 --- a/core/lib/Drupal/Core/Validation/Plugin/Validation/Constraint/AllowedValuesConstraint.php +++ b/core/lib/Drupal/Core/Validation/Plugin/Validation/Constraint/AllowedValuesConstraint.php @@ -17,8 +17,14 @@ )] class AllowedValuesConstraint extends Choice { - public $strict = TRUE; - public $minMessage = 'You must select at least %limit choice.|You must select at least %limit choices.'; - public $maxMessage = 'You must select at most %limit choice.|You must select at most %limit choices.'; + /** + * {@inheritdoc} + */ + public function __construct(...$args) { + $this->strict = TRUE; + $this->minMessage = 'You must select at least %limit choice.|You must select at least %limit choices.'; + $this->maxMessage = 'You must select at most %limit choice.|You must select at most %limit choices.'; + parent::__construct(...$args); + } } diff --git a/core/lib/Drupal/Core/Validation/Plugin/Validation/Constraint/CountConstraint.php b/core/lib/Drupal/Core/Validation/Plugin/Validation/Constraint/CountConstraint.php index 4a5135c1fc01cf1ceee3ff6c7c185c5b68ea864c..9cde560037e532756636920d588dc3202dd7aeec 100644 --- a/core/lib/Drupal/Core/Validation/Plugin/Validation/Constraint/CountConstraint.php +++ b/core/lib/Drupal/Core/Validation/Plugin/Validation/Constraint/CountConstraint.php @@ -18,9 +18,15 @@ )] class CountConstraint extends Count { - public $minMessage = 'This collection should contain %limit element or more.|This collection should contain %limit elements or more.'; - public $maxMessage = 'This collection should contain %limit element or less.|This collection should contain %limit elements or less.'; - public $exactMessage = 'This collection should contain exactly %limit element.|This collection should contain exactly %limit elements.'; + /** + * {@inheritdoc} + */ + public function __construct(...$args) { + $this->minMessage = 'This collection should contain %limit element or more.|This collection should contain %limit elements or more.'; + $this->maxMessage = 'This collection should contain %limit element or less.|This collection should contain %limit elements or less.'; + $this->exactMessage = 'This collection should contain exactly %limit element.|This collection should contain exactly %limit elements.'; + parent::__construct(...$args); + } /** * {@inheritdoc} diff --git a/core/lib/Drupal/Core/Validation/Plugin/Validation/Constraint/EmailConstraint.php b/core/lib/Drupal/Core/Validation/Plugin/Validation/Constraint/EmailConstraint.php index f4c0f9f5be07e139c9f3e4f21b7153d29b82de89..0d684e9512e7c9aa65730d3497962974b9a92698 100644 --- a/core/lib/Drupal/Core/Validation/Plugin/Validation/Constraint/EmailConstraint.php +++ b/core/lib/Drupal/Core/Validation/Plugin/Validation/Constraint/EmailConstraint.php @@ -20,9 +20,9 @@ class EmailConstraint extends Email { /** * {@inheritdoc} */ - public function __construct($options = []) { - $options += ['mode' => 'strict']; - parent::__construct($options); + public function __construct(...$args) { + $this->mode = static::VALIDATION_MODE_STRICT; + parent::__construct(...$args); } /** diff --git a/core/lib/Drupal/Core/Validation/Plugin/Validation/Constraint/LengthConstraint.php b/core/lib/Drupal/Core/Validation/Plugin/Validation/Constraint/LengthConstraint.php index 442d86f7a83e364bd71ea16be0dd7863af3ccd2f..30928bd09e67717b3ef8c9806dba05ff0a7a5e7d 100644 --- a/core/lib/Drupal/Core/Validation/Plugin/Validation/Constraint/LengthConstraint.php +++ b/core/lib/Drupal/Core/Validation/Plugin/Validation/Constraint/LengthConstraint.php @@ -20,9 +20,15 @@ )] class LengthConstraint extends Length { - public $maxMessage = 'This value is too long. It should have %limit character or less.|This value is too long. It should have %limit characters or less.'; - public $minMessage = 'This value is too short. It should have %limit character or more.|This value is too short. It should have %limit characters or more.'; - public $exactMessage = 'This value should have exactly %limit character.|This value should have exactly %limit characters.'; + /** + * {@inheritdoc} + */ + public function __construct(...$args) { + $this->maxMessage = 'This value is too long. It should have %limit character or less.|This value is too long. It should have %limit characters or less.'; + $this->minMessage = 'This value is too short. It should have %limit character or more.|This value is too short. It should have %limit characters or more.'; + $this->exactMessage = 'This value should have exactly %limit character.|This value should have exactly %limit characters.'; + parent::__construct(...$args); + } /** * {@inheritdoc} diff --git a/core/lib/Drupal/Core/Validation/Plugin/Validation/Constraint/RangeConstraint.php b/core/lib/Drupal/Core/Validation/Plugin/Validation/Constraint/RangeConstraint.php index d05123387f71040ee94d6ad2cec8b90b72f68c95..86fa440ec8e535141e1c58697c5b9ea29702d5cb 100644 --- a/core/lib/Drupal/Core/Validation/Plugin/Validation/Constraint/RangeConstraint.php +++ b/core/lib/Drupal/Core/Validation/Plugin/Validation/Constraint/RangeConstraint.php @@ -23,15 +23,11 @@ class RangeConstraint extends Range { /** * {@inheritdoc} */ - public function __construct(array $options = NULL) { - if (isset($options['min']) && isset($options['max'])) { - $options['notInRangeMessage'] = $options['notInRangeMessage'] ?? 'This value should be between %min and %max.'; - } - else { - $options['minMessage'] = $options['minMessage'] ?? 'This value should be %limit or more.'; - $options['maxMessage'] = $options['maxMessage'] ?? 'This value should be %limit or less.'; - } - parent::__construct($options); + public function __construct(...$args) { + $this->notInRangeMessage = 'This value should be between %min and %max.'; + $this->minMessage = 'This value should be %limit or more.'; + $this->maxMessage = 'This value should be %limit or less.'; + parent::__construct(...$args); } } diff --git a/core/lib/Drupal/Core/Validation/Plugin/Validation/Constraint/RegexConstraint.php b/core/lib/Drupal/Core/Validation/Plugin/Validation/Constraint/RegexConstraint.php index 4dcf5e14d80e17d34849c446486473dd75dc24d8..6ca5c6b6dfd2659cd21dbe3b7e7eea4b14c90771 100644 --- a/core/lib/Drupal/Core/Validation/Plugin/Validation/Constraint/RegexConstraint.php +++ b/core/lib/Drupal/Core/Validation/Plugin/Validation/Constraint/RegexConstraint.php @@ -17,8 +17,6 @@ )] class RegexConstraint extends Regex { - public $message = 'This value is not valid.'; - /** * {@inheritdoc} */