Skip to content

Commit 89e0db1

Browse files
Merge branch '4.3' into 4.4
* 4.3: [Validator] fix deprecation layer of ValidatorBuilder [HttpKernel] Fix missing use for request and response classes bumped Symfony version to 4.3.2 updated VERSION for 4.3.1 updated CHANGELOG for 4.3.1
2 parents 3c62a65 + e12a774 commit 89e0db1

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ CHANGELOG
3232
* added `DivisibleBy` constraint
3333
* decoupled from `symfony/translation` by using `Symfony\Contracts\Translation\TranslatorInterface`
3434
* deprecated `ValidatorBuilderInterface`
35-
* made `ValidatorBuilder` final
35+
* made `ValidatorBuilder::setTranslator()` final
3636
* marked `format` the default option in `DateTime` constraint
3737
* deprecated validating instances of `\DateTimeInterface` in `DateTimeValidator`, `DateValidator` and `TimeValidator`.
3838
* deprecated using the `Bic`, `Country`, `Currency`, `Language` and `Locale` constraints without `symfony/intl`

ValidatorBuilder.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,6 @@
3838
* The default implementation of {@link ValidatorBuilderInterface}.
3939
*
4040
* @author Bernhard Schussek <bschussek@gmail.com>
41-
*
42-
* @final since Symfony 4.2
4341
*/
4442
class ValidatorBuilder implements ValidatorBuilderInterface
4543
{
@@ -255,6 +253,8 @@ public function setConstraintValidatorFactory(ConstraintValidatorFactoryInterfac
255253

256254
/**
257255
* {@inheritdoc}
256+
*
257+
* @final since Symfony 4.2
258258
*/
259259
public function setTranslator(LegacyTranslatorInterface $translator)
260260
{

0 commit comments

Comments
 (0)