@@ -3,6 +3,7 @@ sed -i 's/ *"\*\*\/Tests\/"//' composer.json
3
3
composer u -o
4
4
SYMFONY_PATCH_TYPE_DECLARATIONS='force=2&php=8.1' php .github/patch-types.php
5
5
head=$(sed '/^diff /Q' .github/expected-missing-return-types.diff)
6
+ git checkout src/Symfony/Contracts/Service/ResetInterface.php
6
7
(echo "$head" && echo && git diff -U2 src/) > .github/expected-missing-return-types.diff
7
8
git checkout composer.json src/
8
9
@@ -6726,6 +6727,17 @@ index f05db1533b..0e67c63c66 100644
6726
6727
+ public function finishView(FormView $view, FormInterface $form, array $options): void
6727
6728
{
6728
6729
$this->parent?->finishView($view, $form, $options);
6730
+ diff --git a/src/Symfony/Component/Form/Tests/Extension/Validator/Type/UploadValidatorExtensionTest.php b/src/Symfony/Component/Form/Tests/Extension/Validator/Type/UploadValidatorExtensionTest.php
6731
+ index 0533883f70..96c39c5cae 100644
6732
+ --- a/src/Symfony/Component/Form/Tests/Extension/Validator/Type/UploadValidatorExtensionTest.php
6733
+ +++ b/src/Symfony/Component/Form/Tests/Extension/Validator/Type/UploadValidatorExtensionTest.php
6734
+ @@ -43,5 +43,5 @@ class DummyTranslator implements TranslatorInterface, LocaleAwareInterface
6735
+ }
6736
+
6737
+ - public function setLocale($locale)
6738
+ + public function setLocale($locale): void
6739
+ {
6740
+ }
6729
6741
diff --git a/src/Symfony/Component/HttpClient/CachingHttpClient.php b/src/Symfony/Component/HttpClient/CachingHttpClient.php
6730
6742
index 05a8e6b4c6..232bed6fac 100644
6731
6743
--- a/src/Symfony/Component/HttpClient/CachingHttpClient.php
@@ -13417,6 +13429,17 @@ index c1a77ad157..1e926dc83a 100644
13417
13429
+ public function setParsedLine(int $parsedLine): void
13418
13430
{
13419
13431
$this->parsedLine = $parsedLine;
13432
+ diff --git a/src/Symfony/Contracts/Translation/LocaleAwareInterface.php b/src/Symfony/Contracts/Translation/LocaleAwareInterface.php
13433
+ index db40ba13e0..48928ca959 100644
13434
+ --- a/src/Symfony/Contracts/Translation/LocaleAwareInterface.php
13435
+ +++ b/src/Symfony/Contracts/Translation/LocaleAwareInterface.php
13436
+ @@ -21,5 +21,5 @@ interface LocaleAwareInterface
13437
+ * @throws \InvalidArgumentException If the locale contains invalid characters
13438
+ */
13439
+ - public function setLocale(string $locale);
13440
+ + public function setLocale(string $locale): void;
13441
+
13442
+ /**
13420
13443
diff --git a/src/Symfony/Contracts/Translation/TranslatorTrait.php b/src/Symfony/Contracts/Translation/TranslatorTrait.php
13421
13444
index e3b0adff05..19d90162ab 100644
13422
13445
--- a/src/Symfony/Contracts/Translation/TranslatorTrait.php
0 commit comments