@@ -694,7 +694,7 @@ diff --git a/src/Symfony/Bundle/FrameworkBundle/DependencyInjection/FrameworkExt
694
694
+ public function load(array $configs, ContainerBuilder $container): void
695
695
{
696
696
$loader = new PhpFileLoader($container, new FileLocator(\dirname(__DIR__).'/Resources/config'));
697
- @@ -2941 ,5 +2941 ,5 @@ class FrameworkExtension extends Extension
697
+ @@ -2951 ,5 +2951 ,5 @@ class FrameworkExtension extends Extension
698
698
* @return void
699
699
*/
700
700
- public static function registerRateLimiter(ContainerBuilder $container, string $name, array $limiterConfig)
@@ -5315,76 +5315,76 @@ diff --git a/src/Symfony/Component/Form/AbstractType.php b/src/Symfony/Component
5315
5315
--- a/src/Symfony/Component/Form/AbstractType.php
5316
5316
+++ b/src/Symfony/Component/Form/AbstractType.php
5317
5317
@@ -24,5 +24,5 @@ abstract class AbstractType implements FormTypeInterface
5318
+ * @return string|null
5319
+ */
5320
+ - public function getParent()
5321
+ + public function getParent(): ?string
5322
+ {
5323
+ return FormType::class;
5324
+ @@ -32,5 +32,5 @@ abstract class AbstractType implements FormTypeInterface
5325
+ * @return void
5326
+ */
5327
+ - public function configureOptions(OptionsResolver $resolver)
5328
+ + public function configureOptions(OptionsResolver $resolver): void
5329
+ {
5330
+ }
5331
+ @@ -39,5 +39,5 @@ abstract class AbstractType implements FormTypeInterface
5318
5332
* @return void
5319
5333
*/
5320
5334
- public function buildForm(FormBuilderInterface $builder, array $options)
5321
5335
+ public function buildForm(FormBuilderInterface $builder, array $options): void
5322
5336
{
5323
5337
}
5324
- @@ -31 ,5 +31 ,5 @@ abstract class AbstractType implements FormTypeInterface
5338
+ @@ -46 ,5 +46 ,5 @@ abstract class AbstractType implements FormTypeInterface
5325
5339
* @return void
5326
5340
*/
5327
5341
- public function buildView(FormView $view, FormInterface $form, array $options)
5328
5342
+ public function buildView(FormView $view, FormInterface $form, array $options): void
5329
5343
{
5330
5344
}
5331
- @@ -38 ,5 +38 ,5 @@ abstract class AbstractType implements FormTypeInterface
5345
+ @@ -53 ,5 +53 ,5 @@ abstract class AbstractType implements FormTypeInterface
5332
5346
* @return void
5333
5347
*/
5334
5348
- public function finishView(FormView $view, FormInterface $form, array $options)
5335
5349
+ public function finishView(FormView $view, FormInterface $form, array $options): void
5336
5350
{
5337
5351
}
5338
- @@ -45,5 +45,5 @@ abstract class AbstractType implements FormTypeInterface
5339
- * @return void
5340
- */
5341
- - public function configureOptions(OptionsResolver $resolver)
5342
- + public function configureOptions(OptionsResolver $resolver): void
5343
- {
5344
- }
5345
- @@ -52,5 +52,5 @@ abstract class AbstractType implements FormTypeInterface
5352
+ @@ -60,5 +60,5 @@ abstract class AbstractType implements FormTypeInterface
5346
5353
* @return string
5347
5354
*/
5348
5355
- public function getBlockPrefix()
5349
5356
+ public function getBlockPrefix(): string
5350
5357
{
5351
5358
return StringUtil::fqcnToBlockPrefix(static::class) ?: '';
5352
- @@ -60,5 +60,5 @@ abstract class AbstractType implements FormTypeInterface
5353
- * @return string|null
5354
- */
5355
- - public function getParent()
5356
- + public function getParent(): ?string
5357
- {
5358
- return FormType::class;
5359
5359
diff --git a/src/Symfony/Component/Form/AbstractTypeExtension.php b/src/Symfony/Component/Form/AbstractTypeExtension.php
5360
5360
--- a/src/Symfony/Component/Form/AbstractTypeExtension.php
5361
5361
+++ b/src/Symfony/Component/Form/AbstractTypeExtension.php
5362
5362
@@ -22,5 +22,5 @@ abstract class AbstractTypeExtension implements FormTypeExtensionInterface
5363
5363
* @return void
5364
5364
*/
5365
- - public function buildForm(FormBuilderInterface $builder, array $options )
5366
- + public function buildForm(FormBuilderInterface $builder, array $options ): void
5365
+ - public function configureOptions(OptionsResolver $resolver )
5366
+ + public function configureOptions(OptionsResolver $resolver ): void
5367
5367
{
5368
5368
}
5369
5369
@@ -29,5 +29,5 @@ abstract class AbstractTypeExtension implements FormTypeExtensionInterface
5370
5370
* @return void
5371
5371
*/
5372
- - public function buildView(FormView $view, FormInterface $form , array $options)
5373
- + public function buildView(FormView $view, FormInterface $form , array $options): void
5372
+ - public function buildForm(FormBuilderInterface $builder , array $options)
5373
+ + public function buildForm(FormBuilderInterface $builder , array $options): void
5374
5374
{
5375
5375
}
5376
5376
@@ -36,5 +36,5 @@ abstract class AbstractTypeExtension implements FormTypeExtensionInterface
5377
5377
* @return void
5378
5378
*/
5379
- - public function finishView (FormView $view, FormInterface $form, array $options)
5380
- + public function finishView (FormView $view, FormInterface $form, array $options): void
5379
+ - public function buildView (FormView $view, FormInterface $form, array $options)
5380
+ + public function buildView (FormView $view, FormInterface $form, array $options): void
5381
5381
{
5382
5382
}
5383
5383
@@ -43,5 +43,5 @@ abstract class AbstractTypeExtension implements FormTypeExtensionInterface
5384
5384
* @return void
5385
5385
*/
5386
- - public function configureOptions(OptionsResolver $resolver )
5387
- + public function configureOptions(OptionsResolver $resolver ): void
5386
+ - public function finishView(FormView $view, FormInterface $form, array $options )
5387
+ + public function finishView(FormView $view, FormInterface $form, array $options ): void
5388
5388
{
5389
5389
}
5390
5390
diff --git a/src/Symfony/Component/Form/ButtonBuilder.php b/src/Symfony/Component/Form/ButtonBuilder.php
@@ -6862,33 +6862,33 @@ diff --git a/src/Symfony/Component/Form/FormRendererInterface.php b/src/Symfony/
6862
6862
diff --git a/src/Symfony/Component/Form/FormTypeExtensionInterface.php b/src/Symfony/Component/Form/FormTypeExtensionInterface.php
6863
6863
--- a/src/Symfony/Component/Form/FormTypeExtensionInterface.php
6864
6864
+++ b/src/Symfony/Component/Form/FormTypeExtensionInterface.php
6865
- @@ -31,5 +31,5 @@ interface FormTypeExtensionInterface
6865
+ @@ -29,5 +29,5 @@ interface FormTypeExtensionInterface
6866
+ * @return void
6867
+ */
6868
+ - public function configureOptions(OptionsResolver $resolver);
6869
+ + public function configureOptions(OptionsResolver $resolver): void;
6870
+
6871
+ /**
6872
+ @@ -43,5 +43,5 @@ interface FormTypeExtensionInterface
6866
6873
* @see FormTypeInterface::buildForm()
6867
6874
*/
6868
6875
- public function buildForm(FormBuilderInterface $builder, array $options);
6869
6876
+ public function buildForm(FormBuilderInterface $builder, array $options): void;
6870
6877
6871
6878
/**
6872
- @@ -45 ,5 +45 ,5 @@ interface FormTypeExtensionInterface
6879
+ @@ -57 ,5 +57 ,5 @@ interface FormTypeExtensionInterface
6873
6880
* @see FormTypeInterface::buildView()
6874
6881
*/
6875
6882
- public function buildView(FormView $view, FormInterface $form, array $options);
6876
6883
+ public function buildView(FormView $view, FormInterface $form, array $options): void;
6877
6884
6878
6885
/**
6879
- @@ -59,10 +59,10 @@ interface FormTypeExtensionInterface
6886
+ @@ -71,4 +71,4 @@ interface FormTypeExtensionInterface
6880
6887
* @see FormTypeInterface::finishView()
6881
6888
*/
6882
6889
- public function finishView(FormView $view, FormInterface $form, array $options);
6883
6890
+ public function finishView(FormView $view, FormInterface $form, array $options): void;
6884
-
6885
- /**
6886
- * @return void
6887
- */
6888
- - public function configureOptions(OptionsResolver $resolver);
6889
- + public function configureOptions(OptionsResolver $resolver): void;
6890
-
6891
- /**
6891
+ }
6892
6892
diff --git a/src/Symfony/Component/Form/FormTypeGuesserInterface.php b/src/Symfony/Component/Form/FormTypeGuesserInterface.php
6893
6893
--- a/src/Symfony/Component/Form/FormTypeGuesserInterface.php
6894
6894
+++ b/src/Symfony/Component/Form/FormTypeGuesserInterface.php
@@ -6922,46 +6922,46 @@ diff --git a/src/Symfony/Component/Form/FormTypeGuesserInterface.php b/src/Symfo
6922
6922
diff --git a/src/Symfony/Component/Form/FormTypeInterface.php b/src/Symfony/Component/Form/FormTypeInterface.php
6923
6923
--- a/src/Symfony/Component/Form/FormTypeInterface.php
6924
6924
+++ b/src/Symfony/Component/Form/FormTypeInterface.php
6925
- @@ -31,5 +31,5 @@ interface FormTypeInterface
6925
+ @@ -27,5 +27,5 @@ interface FormTypeInterface
6926
+ * @return string|null
6927
+ */
6928
+ - public function getParent();
6929
+ + public function getParent(): ?string;
6930
+
6931
+ /**
6932
+ @@ -34,5 +34,5 @@ interface FormTypeInterface
6933
+ * @return void
6934
+ */
6935
+ - public function configureOptions(OptionsResolver $resolver);
6936
+ + public function configureOptions(OptionsResolver $resolver): void;
6937
+
6938
+ /**
6939
+ @@ -48,5 +48,5 @@ interface FormTypeInterface
6926
6940
* @see FormTypeExtensionInterface::buildForm()
6927
6941
*/
6928
6942
- public function buildForm(FormBuilderInterface $builder, array $options);
6929
6943
+ public function buildForm(FormBuilderInterface $builder, array $options): void;
6930
6944
6931
6945
/**
6932
- @@ -49 ,5 +49 ,5 @@ interface FormTypeInterface
6946
+ @@ -66 ,5 +66 ,5 @@ interface FormTypeInterface
6933
6947
* @see FormTypeExtensionInterface::buildView()
6934
6948
*/
6935
6949
- public function buildView(FormView $view, FormInterface $form, array $options);
6936
6950
+ public function buildView(FormView $view, FormInterface $form, array $options): void;
6937
6951
6938
6952
/**
6939
- @@ -68 ,5 +68 ,5 @@ interface FormTypeInterface
6953
+ @@ -85 ,5 +85 ,5 @@ interface FormTypeInterface
6940
6954
* @see FormTypeExtensionInterface::finishView()
6941
6955
*/
6942
6956
- public function finishView(FormView $view, FormInterface $form, array $options);
6943
6957
+ public function finishView(FormView $view, FormInterface $form, array $options): void;
6944
6958
6945
6959
/**
6946
- @@ -75,5 +75,5 @@ interface FormTypeInterface
6947
- * @return void
6948
- */
6949
- - public function configureOptions(OptionsResolver $resolver);
6950
- + public function configureOptions(OptionsResolver $resolver): void;
6951
-
6952
- /**
6953
- @@ -85,5 +85,5 @@ interface FormTypeInterface
6960
+ @@ -95,4 +95,4 @@ interface FormTypeInterface
6954
6961
* @return string
6955
6962
*/
6956
6963
- public function getBlockPrefix();
6957
6964
+ public function getBlockPrefix(): string;
6958
-
6959
- /**
6960
- @@ -92,4 +92,4 @@ interface FormTypeInterface
6961
- * @return string|null
6962
- */
6963
- - public function getParent();
6964
- + public function getParent(): ?string;
6965
6965
}
6966
6966
diff --git a/src/Symfony/Component/Form/FormView.php b/src/Symfony/Component/Form/FormView.php
6967
6967
--- a/src/Symfony/Component/Form/FormView.php
@@ -8320,7 +8320,7 @@ diff --git a/src/Symfony/Component/HttpKernel/DependencyInjection/LoggerPass.php
8320
8320
diff --git a/src/Symfony/Component/HttpKernel/DependencyInjection/RegisterControllerArgumentLocatorsPass.php b/src/Symfony/Component/HttpKernel/DependencyInjection/RegisterControllerArgumentLocatorsPass.php
8321
8321
--- a/src/Symfony/Component/HttpKernel/DependencyInjection/RegisterControllerArgumentLocatorsPass.php
8322
8322
+++ b/src/Symfony/Component/HttpKernel/DependencyInjection/RegisterControllerArgumentLocatorsPass.php
8323
- @@ -37 ,5 +37 ,5 @@ class RegisterControllerArgumentLocatorsPass implements CompilerPassInterface
8323
+ @@ -38 ,5 +38 ,5 @@ class RegisterControllerArgumentLocatorsPass implements CompilerPassInterface
8324
8324
* @return void
8325
8325
*/
8326
8326
- public function process(ContainerBuilder $container)
@@ -13056,7 +13056,7 @@ diff --git a/src/Symfony/Component/Validator/Constraints/SequentiallyValidator.p
13056
13056
diff --git a/src/Symfony/Component/Validator/Constraints/TimeValidator.php b/src/Symfony/Component/Validator/Constraints/TimeValidator.php
13057
13057
--- a/src/Symfony/Component/Validator/Constraints/TimeValidator.php
13058
13058
+++ b/src/Symfony/Component/Validator/Constraints/TimeValidator.php
13059
- @@ -37 ,5 +37 ,5 @@ class TimeValidator extends ConstraintValidator
13059
+ @@ -38 ,5 +38 ,5 @@ class TimeValidator extends ConstraintValidator
13060
13060
* @return void
13061
13061
*/
13062
13062
- public function validate(mixed $value, Constraint $constraint)
0 commit comments