diff --git a/.github/expected-missing-return-types.diff b/.github/expected-missing-return-types.diff index caf2a7e780ecc..1dc86d5c94d2e 100644 --- a/.github/expected-missing-return-types.diff +++ b/.github/expected-missing-return-types.diff @@ -4,11 +4,10 @@ composer u -o SYMFONY_PATCH_TYPE_DECLARATIONS='force=2&php=8.1' php .github/patch-types.php head=$(sed '/^diff /Q' .github/expected-missing-return-types.diff) git checkout src/Symfony/Contracts/Service/ResetInterface.php -(echo "$head" && echo && git diff -U2 src/) > .github/expected-missing-return-types.diff +(echo "$head" && echo && git diff -U2 src/ | grep '^index ' -v) > .github/expected-missing-return-types.diff git checkout composer.json src/ diff --git a/src/Symfony/Bridge/Doctrine/DataCollector/DoctrineDataCollector.php b/src/Symfony/Bridge/Doctrine/DataCollector/DoctrineDataCollector.php -index ada5fcbd49..51af652f08 100644 --- a/src/Symfony/Bridge/Doctrine/DataCollector/DoctrineDataCollector.php +++ b/src/Symfony/Bridge/Doctrine/DataCollector/DoctrineDataCollector.php @@ -51,5 +51,5 @@ class DoctrineDataCollector extends DataCollector @@ -40,7 +39,6 @@ index ada5fcbd49..51af652f08 100644 { return array_sum(array_map('count', $this->data['queries'])); diff --git a/src/Symfony/Bridge/Doctrine/DataFixtures/ContainerAwareLoader.php b/src/Symfony/Bridge/Doctrine/DataFixtures/ContainerAwareLoader.php -index 4fa5057fe2..9e111adac5 100644 --- a/src/Symfony/Bridge/Doctrine/DataFixtures/ContainerAwareLoader.php +++ b/src/Symfony/Bridge/Doctrine/DataFixtures/ContainerAwareLoader.php @@ -36,5 +36,5 @@ class ContainerAwareLoader extends Loader @@ -51,7 +49,6 @@ index 4fa5057fe2..9e111adac5 100644 { if ($fixture instanceof ContainerAwareInterface) { diff --git a/src/Symfony/Bridge/Doctrine/DependencyInjection/AbstractDoctrineExtension.php b/src/Symfony/Bridge/Doctrine/DependencyInjection/AbstractDoctrineExtension.php -index 1ce0ffd40c..585265fb38 100644 --- a/src/Symfony/Bridge/Doctrine/DependencyInjection/AbstractDoctrineExtension.php +++ b/src/Symfony/Bridge/Doctrine/DependencyInjection/AbstractDoctrineExtension.php @@ -43,5 +43,5 @@ abstract class AbstractDoctrineExtension extends Extension @@ -97,7 +94,6 @@ index 1ce0ffd40c..585265fb38 100644 { $this->loadCacheDriver($cacheName, $objectManager['name'], $objectManager[$cacheName.'_driver'], $container); diff --git a/src/Symfony/Bridge/Doctrine/DependencyInjection/CompilerPass/DoctrineValidationPass.php b/src/Symfony/Bridge/Doctrine/DependencyInjection/CompilerPass/DoctrineValidationPass.php -index 83bfffaf27..acbd7e4bc7 100644 --- a/src/Symfony/Bridge/Doctrine/DependencyInjection/CompilerPass/DoctrineValidationPass.php +++ b/src/Symfony/Bridge/Doctrine/DependencyInjection/CompilerPass/DoctrineValidationPass.php @@ -32,5 +32,5 @@ class DoctrineValidationPass implements CompilerPassInterface @@ -108,7 +104,6 @@ index 83bfffaf27..acbd7e4bc7 100644 { $this->updateValidatorMappingFiles($container, 'xml', 'xml'); diff --git a/src/Symfony/Bridge/Doctrine/DependencyInjection/CompilerPass/RegisterEventListenersAndSubscribersPass.php b/src/Symfony/Bridge/Doctrine/DependencyInjection/CompilerPass/RegisterEventListenersAndSubscribersPass.php -index b6946cc4de..5b3ba9f915 100644 --- a/src/Symfony/Bridge/Doctrine/DependencyInjection/CompilerPass/RegisterEventListenersAndSubscribersPass.php +++ b/src/Symfony/Bridge/Doctrine/DependencyInjection/CompilerPass/RegisterEventListenersAndSubscribersPass.php @@ -54,5 +54,5 @@ class RegisterEventListenersAndSubscribersPass implements CompilerPassInterface @@ -119,7 +114,6 @@ index b6946cc4de..5b3ba9f915 100644 { if (!$container->hasParameter($this->connectionsParameter)) { diff --git a/src/Symfony/Bridge/Doctrine/DependencyInjection/CompilerPass/RegisterMappingsPass.php b/src/Symfony/Bridge/Doctrine/DependencyInjection/CompilerPass/RegisterMappingsPass.php -index 1a3f227c6d..daf6634922 100644 --- a/src/Symfony/Bridge/Doctrine/DependencyInjection/CompilerPass/RegisterMappingsPass.php +++ b/src/Symfony/Bridge/Doctrine/DependencyInjection/CompilerPass/RegisterMappingsPass.php @@ -134,5 +134,5 @@ abstract class RegisterMappingsPass implements CompilerPassInterface @@ -130,7 +124,6 @@ index 1a3f227c6d..daf6634922 100644 { if (!$this->enabled($container)) { diff --git a/src/Symfony/Bridge/Doctrine/DependencyInjection/Security/UserProvider/EntityFactory.php b/src/Symfony/Bridge/Doctrine/DependencyInjection/Security/UserProvider/EntityFactory.php -index 80ee258438..e2c51954d0 100644 --- a/src/Symfony/Bridge/Doctrine/DependencyInjection/Security/UserProvider/EntityFactory.php +++ b/src/Symfony/Bridge/Doctrine/DependencyInjection/Security/UserProvider/EntityFactory.php @@ -37,5 +37,5 @@ class EntityFactory implements UserProviderFactoryInterface @@ -155,7 +148,6 @@ index 80ee258438..e2c51954d0 100644 { $node diff --git a/src/Symfony/Bridge/Doctrine/Form/EventListener/MergeDoctrineCollectionListener.php b/src/Symfony/Bridge/Doctrine/Form/EventListener/MergeDoctrineCollectionListener.php -index cff8b3b156..51e1f32e97 100644 --- a/src/Symfony/Bridge/Doctrine/Form/EventListener/MergeDoctrineCollectionListener.php +++ b/src/Symfony/Bridge/Doctrine/Form/EventListener/MergeDoctrineCollectionListener.php @@ -42,5 +42,5 @@ class MergeDoctrineCollectionListener implements EventSubscriberInterface @@ -166,7 +158,6 @@ index cff8b3b156..51e1f32e97 100644 { $collection = $event->getForm()->getData(); diff --git a/src/Symfony/Bridge/Doctrine/Form/Type/DoctrineType.php b/src/Symfony/Bridge/Doctrine/Form/Type/DoctrineType.php -index d1d72ef75a..68a437e8d7 100644 --- a/src/Symfony/Bridge/Doctrine/Form/Type/DoctrineType.php +++ b/src/Symfony/Bridge/Doctrine/Form/Type/DoctrineType.php @@ -101,5 +101,5 @@ abstract class DoctrineType extends AbstractType implements ResetInterface @@ -191,7 +182,6 @@ index d1d72ef75a..68a437e8d7 100644 { $this->idReaders = []; diff --git a/src/Symfony/Bridge/Doctrine/Form/Type/EntityType.php b/src/Symfony/Bridge/Doctrine/Form/Type/EntityType.php -index c096b558db..8d584900a9 100644 --- a/src/Symfony/Bridge/Doctrine/Form/Type/EntityType.php +++ b/src/Symfony/Bridge/Doctrine/Form/Type/EntityType.php @@ -25,5 +25,5 @@ class EntityType extends DoctrineType @@ -202,7 +192,6 @@ index c096b558db..8d584900a9 100644 { parent::configureOptions($resolver); diff --git a/src/Symfony/Bridge/Doctrine/Logger/DbalLogger.php b/src/Symfony/Bridge/Doctrine/Logger/DbalLogger.php -index b2369e95d6..c33484608e 100644 --- a/src/Symfony/Bridge/Doctrine/Logger/DbalLogger.php +++ b/src/Symfony/Bridge/Doctrine/Logger/DbalLogger.php @@ -52,5 +52,5 @@ class DbalLogger implements SQLLogger @@ -213,7 +202,6 @@ index b2369e95d6..c33484608e 100644 { $this->logger->debug($message, $params); diff --git a/src/Symfony/Bridge/Doctrine/Messenger/DoctrineClearEntityManagerWorkerSubscriber.php b/src/Symfony/Bridge/Doctrine/Messenger/DoctrineClearEntityManagerWorkerSubscriber.php -index 38618fc15e..eb599eb0b4 100644 --- a/src/Symfony/Bridge/Doctrine/Messenger/DoctrineClearEntityManagerWorkerSubscriber.php +++ b/src/Symfony/Bridge/Doctrine/Messenger/DoctrineClearEntityManagerWorkerSubscriber.php @@ -34,5 +34,5 @@ class DoctrineClearEntityManagerWorkerSubscriber implements EventSubscriberInter @@ -231,7 +219,6 @@ index 38618fc15e..eb599eb0b4 100644 { $this->clearEntityManagers(); diff --git a/src/Symfony/Bridge/Doctrine/Security/RememberMe/DoctrineTokenProvider.php b/src/Symfony/Bridge/Doctrine/Security/RememberMe/DoctrineTokenProvider.php -index 9d61be61bd..e89985de26 100644 --- a/src/Symfony/Bridge/Doctrine/Security/RememberMe/DoctrineTokenProvider.php +++ b/src/Symfony/Bridge/Doctrine/Security/RememberMe/DoctrineTokenProvider.php @@ -70,5 +70,5 @@ class DoctrineTokenProvider implements TokenProviderInterface, TokenVerifierInte @@ -256,7 +243,6 @@ index 9d61be61bd..e89985de26 100644 { $sql = 'INSERT INTO rememberme_token (class, username, series, value, lastUsed) VALUES (:class, :username, :series, :value, :lastUsed)'; diff --git a/src/Symfony/Bridge/Doctrine/Validator/Constraints/UniqueEntityValidator.php b/src/Symfony/Bridge/Doctrine/Validator/Constraints/UniqueEntityValidator.php -index a69bcad8ef..fba98b3cfb 100644 --- a/src/Symfony/Bridge/Doctrine/Validator/Constraints/UniqueEntityValidator.php +++ b/src/Symfony/Bridge/Doctrine/Validator/Constraints/UniqueEntityValidator.php @@ -43,5 +43,5 @@ class UniqueEntityValidator extends ConstraintValidator @@ -267,7 +253,6 @@ index a69bcad8ef..fba98b3cfb 100644 { if (!$constraint instanceof UniqueEntity) { diff --git a/src/Symfony/Bridge/Doctrine/Validator/DoctrineInitializer.php b/src/Symfony/Bridge/Doctrine/Validator/DoctrineInitializer.php -index bf8a5feb9f..e346c8b17c 100644 --- a/src/Symfony/Bridge/Doctrine/Validator/DoctrineInitializer.php +++ b/src/Symfony/Bridge/Doctrine/Validator/DoctrineInitializer.php @@ -32,5 +32,5 @@ class DoctrineInitializer implements ObjectInitializerInterface @@ -278,7 +263,6 @@ index bf8a5feb9f..e346c8b17c 100644 { $this->registry->getManagerForClass($object::class)?->initializeObject($object); diff --git a/src/Symfony/Bridge/Monolog/Command/ServerLogCommand.php b/src/Symfony/Bridge/Monolog/Command/ServerLogCommand.php -index 5210e8eefa..0e842abb76 100644 --- a/src/Symfony/Bridge/Monolog/Command/ServerLogCommand.php +++ b/src/Symfony/Bridge/Monolog/Command/ServerLogCommand.php @@ -54,5 +54,5 @@ class ServerLogCommand extends Command @@ -289,7 +273,6 @@ index 5210e8eefa..0e842abb76 100644 { if (!class_exists(ConsoleFormatter::class)) { diff --git a/src/Symfony/Bridge/Monolog/Handler/MailerHandler.php b/src/Symfony/Bridge/Monolog/Handler/MailerHandler.php -index 718be59c13..091f24a8f8 100644 --- a/src/Symfony/Bridge/Monolog/Handler/MailerHandler.php +++ b/src/Symfony/Bridge/Monolog/Handler/MailerHandler.php @@ -81,5 +81,5 @@ class MailerHandler extends AbstractProcessingHandler @@ -300,7 +283,6 @@ index 718be59c13..091f24a8f8 100644 { $this->mailer->send($this->buildMessage($content, $records)); diff --git a/src/Symfony/Bridge/Monolog/Logger.php b/src/Symfony/Bridge/Monolog/Logger.php -index 367b3351ff..fb603e74ba 100644 --- a/src/Symfony/Bridge/Monolog/Logger.php +++ b/src/Symfony/Bridge/Monolog/Logger.php @@ -44,5 +44,5 @@ class Logger extends BaseLogger implements DebugLoggerInterface, ResetInterface @@ -318,7 +300,6 @@ index 367b3351ff..fb603e74ba 100644 { foreach ($this->processors as $k => $processor) { diff --git a/src/Symfony/Bridge/Monolog/Processor/ConsoleCommandProcessor.php b/src/Symfony/Bridge/Monolog/Processor/ConsoleCommandProcessor.php -index df2a718720..2ccab3649f 100644 --- a/src/Symfony/Bridge/Monolog/Processor/ConsoleCommandProcessor.php +++ b/src/Symfony/Bridge/Monolog/Processor/ConsoleCommandProcessor.php @@ -51,5 +51,5 @@ class ConsoleCommandProcessor implements EventSubscriberInterface, ResetInterfac @@ -336,7 +317,6 @@ index df2a718720..2ccab3649f 100644 { $this->commandData = [ diff --git a/src/Symfony/Bridge/Monolog/Processor/DebugProcessor.php b/src/Symfony/Bridge/Monolog/Processor/DebugProcessor.php -index c1ce2898da..7a9bf04e18 100644 --- a/src/Symfony/Bridge/Monolog/Processor/DebugProcessor.php +++ b/src/Symfony/Bridge/Monolog/Processor/DebugProcessor.php @@ -94,5 +94,5 @@ class DebugProcessor implements DebugLoggerInterface, ResetInterface @@ -354,7 +334,6 @@ index c1ce2898da..7a9bf04e18 100644 { $this->clear(); diff --git a/src/Symfony/Bridge/Twig/AppVariable.php b/src/Symfony/Bridge/Twig/AppVariable.php -index 8bfaa0a22c..745ba6aff3 100644 --- a/src/Symfony/Bridge/Twig/AppVariable.php +++ b/src/Symfony/Bridge/Twig/AppVariable.php @@ -36,5 +36,5 @@ class AppVariable @@ -386,7 +365,6 @@ index 8bfaa0a22c..745ba6aff3 100644 { $this->debug = $debug; diff --git a/src/Symfony/Bridge/Twig/Command/DebugCommand.php b/src/Symfony/Bridge/Twig/Command/DebugCommand.php -index 43e4d9c9f1..ea0116870b 100644 --- a/src/Symfony/Bridge/Twig/Command/DebugCommand.php +++ b/src/Symfony/Bridge/Twig/Command/DebugCommand.php @@ -63,5 +63,5 @@ class DebugCommand extends Command @@ -397,7 +375,6 @@ index 43e4d9c9f1..ea0116870b 100644 { $this diff --git a/src/Symfony/Bridge/Twig/Command/LintCommand.php b/src/Symfony/Bridge/Twig/Command/LintCommand.php -index e059740a13..e7d6fbdd05 100644 --- a/src/Symfony/Bridge/Twig/Command/LintCommand.php +++ b/src/Symfony/Bridge/Twig/Command/LintCommand.php @@ -52,5 +52,5 @@ class LintCommand extends Command @@ -408,7 +385,6 @@ index e059740a13..e7d6fbdd05 100644 { $this diff --git a/src/Symfony/Bridge/Twig/EventListener/TemplateAttributeListener.php b/src/Symfony/Bridge/Twig/EventListener/TemplateAttributeListener.php -index ef0f9ba954..16240deb4a 100644 --- a/src/Symfony/Bridge/Twig/EventListener/TemplateAttributeListener.php +++ b/src/Symfony/Bridge/Twig/EventListener/TemplateAttributeListener.php @@ -32,5 +32,5 @@ class TemplateAttributeListener implements EventSubscriberInterface @@ -419,7 +395,6 @@ index ef0f9ba954..16240deb4a 100644 { $parameters = $event->getControllerResult(); diff --git a/src/Symfony/Bridge/Twig/Form/TwigRendererEngine.php b/src/Symfony/Bridge/Twig/Form/TwigRendererEngine.php -index fbe8e0b3e4..6e7fefc70d 100644 --- a/src/Symfony/Bridge/Twig/Form/TwigRendererEngine.php +++ b/src/Symfony/Bridge/Twig/Form/TwigRendererEngine.php @@ -136,5 +136,5 @@ class TwigRendererEngine extends AbstractRendererEngine @@ -430,7 +405,6 @@ index fbe8e0b3e4..6e7fefc70d 100644 { if (!$theme instanceof Template) { diff --git a/src/Symfony/Bridge/Twig/Translation/TwigExtractor.php b/src/Symfony/Bridge/Twig/Translation/TwigExtractor.php -index 2b44c5ef8d..05b4428490 100644 --- a/src/Symfony/Bridge/Twig/Translation/TwigExtractor.php +++ b/src/Symfony/Bridge/Twig/Translation/TwigExtractor.php @@ -49,5 +49,5 @@ class TwigExtractor extends AbstractFileExtractor implements ExtractorInterface @@ -455,7 +429,6 @@ index 2b44c5ef8d..05b4428490 100644 { $visitor = $this->twig->getExtension(TranslationExtension::class)->getTranslationNodeVisitor(); diff --git a/src/Symfony/Bundle/DebugBundle/DebugBundle.php b/src/Symfony/Bundle/DebugBundle/DebugBundle.php -index 9782bf8e39..83090e6ed5 100644 --- a/src/Symfony/Bundle/DebugBundle/DebugBundle.php +++ b/src/Symfony/Bundle/DebugBundle/DebugBundle.php @@ -26,5 +26,5 @@ class DebugBundle extends Bundle @@ -480,7 +453,6 @@ index 9782bf8e39..83090e6ed5 100644 { // noop diff --git a/src/Symfony/Bundle/DebugBundle/DependencyInjection/Compiler/DumpDataCollectorPass.php b/src/Symfony/Bundle/DebugBundle/DependencyInjection/Compiler/DumpDataCollectorPass.php -index cecce87c4a..7c6d738481 100644 --- a/src/Symfony/Bundle/DebugBundle/DependencyInjection/Compiler/DumpDataCollectorPass.php +++ b/src/Symfony/Bundle/DebugBundle/DependencyInjection/Compiler/DumpDataCollectorPass.php @@ -26,5 +26,5 @@ class DumpDataCollectorPass implements CompilerPassInterface @@ -491,10 +463,9 @@ index cecce87c4a..7c6d738481 100644 { if (!$container->hasDefinition('data_collector.dump')) { diff --git a/src/Symfony/Bundle/DebugBundle/DependencyInjection/DebugExtension.php b/src/Symfony/Bundle/DebugBundle/DependencyInjection/DebugExtension.php -index eadeafba55..4f1ca3bfef 100644 --- a/src/Symfony/Bundle/DebugBundle/DependencyInjection/DebugExtension.php +++ b/src/Symfony/Bundle/DebugBundle/DependencyInjection/DebugExtension.php -@@ -33,5 +33,5 @@ class DebugExtension extends Extension +@@ -34,5 +34,5 @@ class DebugExtension extends Extension * @return void */ - public function load(array $configs, ContainerBuilder $container) @@ -502,7 +473,6 @@ index eadeafba55..4f1ca3bfef 100644 { $configuration = new Configuration(); diff --git a/src/Symfony/Bundle/FrameworkBundle/Console/Application.php b/src/Symfony/Bundle/FrameworkBundle/Console/Application.php -index cdbb90a3a9..b137a12012 100644 --- a/src/Symfony/Bundle/FrameworkBundle/Console/Application.php +++ b/src/Symfony/Bundle/FrameworkBundle/Console/Application.php @@ -56,5 +56,5 @@ class Application extends BaseApplication @@ -520,7 +490,6 @@ index cdbb90a3a9..b137a12012 100644 { if ($this->commandsRegistered) { diff --git a/src/Symfony/Bundle/FrameworkBundle/DataCollector/RouterDataCollector.php b/src/Symfony/Bundle/FrameworkBundle/DataCollector/RouterDataCollector.php -index ccb61b1286..700d0f22d4 100644 --- a/src/Symfony/Bundle/FrameworkBundle/DataCollector/RouterDataCollector.php +++ b/src/Symfony/Bundle/FrameworkBundle/DataCollector/RouterDataCollector.php @@ -23,5 +23,5 @@ use Symfony\Component\HttpKernel\DataCollector\RouterDataCollector as BaseRouter @@ -531,7 +500,6 @@ index ccb61b1286..700d0f22d4 100644 { if (\is_array($controller)) { diff --git a/src/Symfony/Bundle/FrameworkBundle/DependencyInjection/Compiler/AddDebugLogProcessorPass.php b/src/Symfony/Bundle/FrameworkBundle/DependencyInjection/Compiler/AddDebugLogProcessorPass.php -index d0aca7a06b..aee4af1a43 100644 --- a/src/Symfony/Bundle/FrameworkBundle/DependencyInjection/Compiler/AddDebugLogProcessorPass.php +++ b/src/Symfony/Bundle/FrameworkBundle/DependencyInjection/Compiler/AddDebugLogProcessorPass.php @@ -21,5 +21,5 @@ class AddDebugLogProcessorPass implements CompilerPassInterface @@ -549,7 +517,6 @@ index d0aca7a06b..aee4af1a43 100644 { if (\is_object($logger) && method_exists($logger, 'removeDebugLogger') && \in_array(\PHP_SAPI, ['cli', 'phpdbg'], true)) { diff --git a/src/Symfony/Bundle/FrameworkBundle/DependencyInjection/Compiler/AddExpressionLanguageProvidersPass.php b/src/Symfony/Bundle/FrameworkBundle/DependencyInjection/Compiler/AddExpressionLanguageProvidersPass.php -index 5442b27734..9ed6cf284c 100644 --- a/src/Symfony/Bundle/FrameworkBundle/DependencyInjection/Compiler/AddExpressionLanguageProvidersPass.php +++ b/src/Symfony/Bundle/FrameworkBundle/DependencyInjection/Compiler/AddExpressionLanguageProvidersPass.php @@ -26,5 +26,5 @@ class AddExpressionLanguageProvidersPass implements CompilerPassInterface @@ -560,7 +527,6 @@ index 5442b27734..9ed6cf284c 100644 { // routing diff --git a/src/Symfony/Bundle/FrameworkBundle/DependencyInjection/Compiler/AssetsContextPass.php b/src/Symfony/Bundle/FrameworkBundle/DependencyInjection/Compiler/AssetsContextPass.php -index e8c2ad3a0e..d8b3b64f5d 100644 --- a/src/Symfony/Bundle/FrameworkBundle/DependencyInjection/Compiler/AssetsContextPass.php +++ b/src/Symfony/Bundle/FrameworkBundle/DependencyInjection/Compiler/AssetsContextPass.php @@ -22,5 +22,5 @@ class AssetsContextPass implements CompilerPassInterface @@ -571,7 +537,6 @@ index e8c2ad3a0e..d8b3b64f5d 100644 { if (!$container->hasDefinition('assets.context')) { diff --git a/src/Symfony/Bundle/FrameworkBundle/DependencyInjection/Compiler/ContainerBuilderDebugDumpPass.php b/src/Symfony/Bundle/FrameworkBundle/DependencyInjection/Compiler/ContainerBuilderDebugDumpPass.php -index 1e08ef3149..530bbdc4cd 100644 --- a/src/Symfony/Bundle/FrameworkBundle/DependencyInjection/Compiler/ContainerBuilderDebugDumpPass.php +++ b/src/Symfony/Bundle/FrameworkBundle/DependencyInjection/Compiler/ContainerBuilderDebugDumpPass.php @@ -29,5 +29,5 @@ class ContainerBuilderDebugDumpPass implements CompilerPassInterface @@ -582,7 +547,6 @@ index 1e08ef3149..530bbdc4cd 100644 { if (!$container->getParameter('debug.container.dump')) { diff --git a/src/Symfony/Bundle/FrameworkBundle/DependencyInjection/Compiler/DataCollectorTranslatorPass.php b/src/Symfony/Bundle/FrameworkBundle/DependencyInjection/Compiler/DataCollectorTranslatorPass.php -index e66e98b451..7714d62f3e 100644 --- a/src/Symfony/Bundle/FrameworkBundle/DependencyInjection/Compiler/DataCollectorTranslatorPass.php +++ b/src/Symfony/Bundle/FrameworkBundle/DependencyInjection/Compiler/DataCollectorTranslatorPass.php @@ -24,5 +24,5 @@ class DataCollectorTranslatorPass implements CompilerPassInterface @@ -593,7 +557,6 @@ index e66e98b451..7714d62f3e 100644 { if (!$container->has('translator')) { diff --git a/src/Symfony/Bundle/FrameworkBundle/DependencyInjection/Compiler/LoggingTranslatorPass.php b/src/Symfony/Bundle/FrameworkBundle/DependencyInjection/Compiler/LoggingTranslatorPass.php -index b7cb920bf7..76b5dace0f 100644 --- a/src/Symfony/Bundle/FrameworkBundle/DependencyInjection/Compiler/LoggingTranslatorPass.php +++ b/src/Symfony/Bundle/FrameworkBundle/DependencyInjection/Compiler/LoggingTranslatorPass.php @@ -26,5 +26,5 @@ class LoggingTranslatorPass implements CompilerPassInterface @@ -604,7 +567,6 @@ index b7cb920bf7..76b5dace0f 100644 { if (!$container->hasAlias('logger') || !$container->hasAlias('translator')) { diff --git a/src/Symfony/Bundle/FrameworkBundle/DependencyInjection/Compiler/ProfilerPass.php b/src/Symfony/Bundle/FrameworkBundle/DependencyInjection/Compiler/ProfilerPass.php -index c2d669fe1c..322f3eaeee 100644 --- a/src/Symfony/Bundle/FrameworkBundle/DependencyInjection/Compiler/ProfilerPass.php +++ b/src/Symfony/Bundle/FrameworkBundle/DependencyInjection/Compiler/ProfilerPass.php @@ -28,5 +28,5 @@ class ProfilerPass implements CompilerPassInterface @@ -615,7 +577,6 @@ index c2d669fe1c..322f3eaeee 100644 { if (false === $container->hasDefinition('profiler')) { diff --git a/src/Symfony/Bundle/FrameworkBundle/DependencyInjection/Compiler/RemoveUnusedSessionMarshallingHandlerPass.php b/src/Symfony/Bundle/FrameworkBundle/DependencyInjection/Compiler/RemoveUnusedSessionMarshallingHandlerPass.php -index fedc30d06e..bb934fe1f6 100644 --- a/src/Symfony/Bundle/FrameworkBundle/DependencyInjection/Compiler/RemoveUnusedSessionMarshallingHandlerPass.php +++ b/src/Symfony/Bundle/FrameworkBundle/DependencyInjection/Compiler/RemoveUnusedSessionMarshallingHandlerPass.php @@ -23,5 +23,5 @@ class RemoveUnusedSessionMarshallingHandlerPass implements CompilerPassInterface @@ -626,7 +587,6 @@ index fedc30d06e..bb934fe1f6 100644 { if (!$container->hasDefinition('session.marshalling_handler')) { diff --git a/src/Symfony/Bundle/FrameworkBundle/DependencyInjection/Compiler/TestServiceContainerRealRefPass.php b/src/Symfony/Bundle/FrameworkBundle/DependencyInjection/Compiler/TestServiceContainerRealRefPass.php -index aed3b13404..91a6804fea 100644 --- a/src/Symfony/Bundle/FrameworkBundle/DependencyInjection/Compiler/TestServiceContainerRealRefPass.php +++ b/src/Symfony/Bundle/FrameworkBundle/DependencyInjection/Compiler/TestServiceContainerRealRefPass.php @@ -25,5 +25,5 @@ class TestServiceContainerRealRefPass implements CompilerPassInterface @@ -637,7 +597,6 @@ index aed3b13404..91a6804fea 100644 { if (!$container->hasDefinition('test.private_services_locator')) { diff --git a/src/Symfony/Bundle/FrameworkBundle/DependencyInjection/Compiler/TestServiceContainerWeakRefPass.php b/src/Symfony/Bundle/FrameworkBundle/DependencyInjection/Compiler/TestServiceContainerWeakRefPass.php -index 6e7669a710..27517d34ae 100644 --- a/src/Symfony/Bundle/FrameworkBundle/DependencyInjection/Compiler/TestServiceContainerWeakRefPass.php +++ b/src/Symfony/Bundle/FrameworkBundle/DependencyInjection/Compiler/TestServiceContainerWeakRefPass.php @@ -25,5 +25,5 @@ class TestServiceContainerWeakRefPass implements CompilerPassInterface @@ -648,7 +607,6 @@ index 6e7669a710..27517d34ae 100644 { if (!$container->hasDefinition('test.private_services_locator')) { diff --git a/src/Symfony/Bundle/FrameworkBundle/DependencyInjection/Compiler/UnusedTagsPass.php b/src/Symfony/Bundle/FrameworkBundle/DependencyInjection/Compiler/UnusedTagsPass.php -index b04516410f..fc5a085a37 100644 --- a/src/Symfony/Bundle/FrameworkBundle/DependencyInjection/Compiler/UnusedTagsPass.php +++ b/src/Symfony/Bundle/FrameworkBundle/DependencyInjection/Compiler/UnusedTagsPass.php @@ -109,5 +109,5 @@ class UnusedTagsPass implements CompilerPassInterface @@ -659,7 +617,6 @@ index b04516410f..fc5a085a37 100644 { $tags = array_unique(array_merge($container->findTags(), self::KNOWN_TAGS)); diff --git a/src/Symfony/Bundle/FrameworkBundle/DependencyInjection/Compiler/WorkflowGuardListenerPass.php b/src/Symfony/Bundle/FrameworkBundle/DependencyInjection/Compiler/WorkflowGuardListenerPass.php -index bda9ca9515..c0d1f91339 100644 --- a/src/Symfony/Bundle/FrameworkBundle/DependencyInjection/Compiler/WorkflowGuardListenerPass.php +++ b/src/Symfony/Bundle/FrameworkBundle/DependencyInjection/Compiler/WorkflowGuardListenerPass.php @@ -25,5 +25,5 @@ class WorkflowGuardListenerPass implements CompilerPassInterface @@ -670,7 +627,6 @@ index bda9ca9515..c0d1f91339 100644 { if (!$container->hasParameter('workflow.has_guard_listeners')) { diff --git a/src/Symfony/Bundle/FrameworkBundle/DependencyInjection/FrameworkExtension.php b/src/Symfony/Bundle/FrameworkBundle/DependencyInjection/FrameworkExtension.php -index 981a865672..b7e456ba54 100644 --- a/src/Symfony/Bundle/FrameworkBundle/DependencyInjection/FrameworkExtension.php +++ b/src/Symfony/Bundle/FrameworkBundle/DependencyInjection/FrameworkExtension.php @@ -212,5 +212,5 @@ class FrameworkExtension extends Extension @@ -680,7 +636,7 @@ index 981a865672..b7e456ba54 100644 + public function load(array $configs, ContainerBuilder $container): void { $loader = new PhpFileLoader($container, new FileLocator(\dirname(__DIR__).'/Resources/config')); -@@ -2901,5 +2901,5 @@ class FrameworkExtension extends Extension +@@ -2903,5 +2903,5 @@ class FrameworkExtension extends Extension * @return void */ - public static function registerRateLimiter(ContainerBuilder $container, string $name, array $limiterConfig) @@ -688,7 +644,6 @@ index 981a865672..b7e456ba54 100644 { trigger_deprecation('symfony/framework-bundle', '6.2', 'The "%s()" method is deprecated.', __METHOD__); diff --git a/src/Symfony/Bundle/FrameworkBundle/FrameworkBundle.php b/src/Symfony/Bundle/FrameworkBundle/FrameworkBundle.php -index 339b28e83c..448402d81e 100644 --- a/src/Symfony/Bundle/FrameworkBundle/FrameworkBundle.php +++ b/src/Symfony/Bundle/FrameworkBundle/FrameworkBundle.php @@ -94,5 +94,5 @@ class FrameworkBundle extends Bundle @@ -706,7 +661,6 @@ index 339b28e83c..448402d81e 100644 { parent::build($container); diff --git a/src/Symfony/Bundle/FrameworkBundle/Kernel/MicroKernelTrait.php b/src/Symfony/Bundle/FrameworkBundle/Kernel/MicroKernelTrait.php -index 3ab28a1f81..2ace764149 100644 --- a/src/Symfony/Bundle/FrameworkBundle/Kernel/MicroKernelTrait.php +++ b/src/Symfony/Bundle/FrameworkBundle/Kernel/MicroKernelTrait.php @@ -132,5 +132,5 @@ trait MicroKernelTrait @@ -717,7 +671,6 @@ index 3ab28a1f81..2ace764149 100644 { $loader->load(function (ContainerBuilder $container) use ($loader) { diff --git a/src/Symfony/Bundle/FrameworkBundle/KernelBrowser.php b/src/Symfony/Bundle/FrameworkBundle/KernelBrowser.php -index 0379be8f5b..568f30f72d 100644 --- a/src/Symfony/Bundle/FrameworkBundle/KernelBrowser.php +++ b/src/Symfony/Bundle/FrameworkBundle/KernelBrowser.php @@ -77,5 +77,5 @@ class KernelBrowser extends HttpKernelBrowser @@ -742,7 +695,6 @@ index 0379be8f5b..568f30f72d 100644 { $this->reboot = true; diff --git a/src/Symfony/Bundle/FrameworkBundle/Routing/AnnotatedRouteControllerLoader.php b/src/Symfony/Bundle/FrameworkBundle/Routing/AnnotatedRouteControllerLoader.php -index ec03f84979..498dc24d1c 100644 --- a/src/Symfony/Bundle/FrameworkBundle/Routing/AnnotatedRouteControllerLoader.php +++ b/src/Symfony/Bundle/FrameworkBundle/Routing/AnnotatedRouteControllerLoader.php @@ -28,5 +28,5 @@ class AnnotatedRouteControllerLoader extends AnnotationClassLoader @@ -753,7 +705,6 @@ index ec03f84979..498dc24d1c 100644 { if ('__invoke' === $method->getName()) { diff --git a/src/Symfony/Bundle/FrameworkBundle/Secrets/AbstractVault.php b/src/Symfony/Bundle/FrameworkBundle/Secrets/AbstractVault.php -index b3eb0c6bc3..c47152f219 100644 --- a/src/Symfony/Bundle/FrameworkBundle/Secrets/AbstractVault.php +++ b/src/Symfony/Bundle/FrameworkBundle/Secrets/AbstractVault.php @@ -44,5 +44,5 @@ abstract class AbstractVault @@ -764,7 +715,6 @@ index b3eb0c6bc3..c47152f219 100644 { return str_replace(getcwd().\DIRECTORY_SEPARATOR, '', $path); diff --git a/src/Symfony/Bundle/FrameworkBundle/Test/KernelTestCase.php b/src/Symfony/Bundle/FrameworkBundle/Test/KernelTestCase.php -index bb5560a7b5..be86cbf98e 100644 --- a/src/Symfony/Bundle/FrameworkBundle/Test/KernelTestCase.php +++ b/src/Symfony/Bundle/FrameworkBundle/Test/KernelTestCase.php @@ -88,5 +88,5 @@ abstract class KernelTestCase extends TestCase @@ -775,7 +725,6 @@ index bb5560a7b5..be86cbf98e 100644 { if (!static::$booted) { diff --git a/src/Symfony/Bundle/FrameworkBundle/Translation/Translator.php b/src/Symfony/Bundle/FrameworkBundle/Translation/Translator.php -index dac3b6394f..d319cb0824 100644 --- a/src/Symfony/Bundle/FrameworkBundle/Translation/Translator.php +++ b/src/Symfony/Bundle/FrameworkBundle/Translation/Translator.php @@ -122,5 +122,5 @@ class Translator extends BaseTranslator implements WarmableInterface @@ -800,7 +749,6 @@ index dac3b6394f..d319cb0824 100644 { if ($this->resourceFiles) { diff --git a/src/Symfony/Bundle/SecurityBundle/Debug/TraceableFirewallListener.php b/src/Symfony/Bundle/SecurityBundle/Debug/TraceableFirewallListener.php -index bb5fe03096..e756cd7957 100644 --- a/src/Symfony/Bundle/SecurityBundle/Debug/TraceableFirewallListener.php +++ b/src/Symfony/Bundle/SecurityBundle/Debug/TraceableFirewallListener.php @@ -32,5 +32,5 @@ final class TraceableFirewallListener extends FirewallListener @@ -811,7 +759,6 @@ index bb5fe03096..e756cd7957 100644 { return $this->wrappedListeners; diff --git a/src/Symfony/Bundle/SecurityBundle/DependencyInjection/Compiler/AddExpressionLanguageProvidersPass.php b/src/Symfony/Bundle/SecurityBundle/DependencyInjection/Compiler/AddExpressionLanguageProvidersPass.php -index 08d7fd9213..8bacecce11 100644 --- a/src/Symfony/Bundle/SecurityBundle/DependencyInjection/Compiler/AddExpressionLanguageProvidersPass.php +++ b/src/Symfony/Bundle/SecurityBundle/DependencyInjection/Compiler/AddExpressionLanguageProvidersPass.php @@ -26,5 +26,5 @@ class AddExpressionLanguageProvidersPass implements CompilerPassInterface @@ -822,7 +769,6 @@ index 08d7fd9213..8bacecce11 100644 { if ($container->has('security.expression_language')) { diff --git a/src/Symfony/Bundle/SecurityBundle/DependencyInjection/Compiler/AddSecurityVotersPass.php b/src/Symfony/Bundle/SecurityBundle/DependencyInjection/Compiler/AddSecurityVotersPass.php -index 8a2bad79a1..324fd00970 100644 --- a/src/Symfony/Bundle/SecurityBundle/DependencyInjection/Compiler/AddSecurityVotersPass.php +++ b/src/Symfony/Bundle/SecurityBundle/DependencyInjection/Compiler/AddSecurityVotersPass.php @@ -33,5 +33,5 @@ class AddSecurityVotersPass implements CompilerPassInterface @@ -833,7 +779,6 @@ index 8a2bad79a1..324fd00970 100644 { if (!$container->hasDefinition('security.access.decision_manager')) { diff --git a/src/Symfony/Bundle/SecurityBundle/DependencyInjection/Compiler/AddSessionDomainConstraintPass.php b/src/Symfony/Bundle/SecurityBundle/DependencyInjection/Compiler/AddSessionDomainConstraintPass.php -index 9a7a94ca08..bc4baa0f65 100644 --- a/src/Symfony/Bundle/SecurityBundle/DependencyInjection/Compiler/AddSessionDomainConstraintPass.php +++ b/src/Symfony/Bundle/SecurityBundle/DependencyInjection/Compiler/AddSessionDomainConstraintPass.php @@ -25,5 +25,5 @@ class AddSessionDomainConstraintPass implements CompilerPassInterface @@ -844,7 +789,6 @@ index 9a7a94ca08..bc4baa0f65 100644 { if (!$container->hasParameter('session.storage.options') || !$container->has('security.http_utils')) { diff --git a/src/Symfony/Bundle/SecurityBundle/DependencyInjection/Compiler/CleanRememberMeVerifierPass.php b/src/Symfony/Bundle/SecurityBundle/DependencyInjection/Compiler/CleanRememberMeVerifierPass.php -index 2041a36b38..d54311d5de 100644 --- a/src/Symfony/Bundle/SecurityBundle/DependencyInjection/Compiler/CleanRememberMeVerifierPass.php +++ b/src/Symfony/Bundle/SecurityBundle/DependencyInjection/Compiler/CleanRememberMeVerifierPass.php @@ -25,5 +25,5 @@ class CleanRememberMeVerifierPass implements CompilerPassInterface @@ -855,7 +799,6 @@ index 2041a36b38..d54311d5de 100644 { if (!$container->hasDefinition('cache.system')) { diff --git a/src/Symfony/Bundle/SecurityBundle/DependencyInjection/Compiler/MakeFirewallsEventDispatcherTraceablePass.php b/src/Symfony/Bundle/SecurityBundle/DependencyInjection/Compiler/MakeFirewallsEventDispatcherTraceablePass.php -index e7c77d1ec3..419e18f6f0 100644 --- a/src/Symfony/Bundle/SecurityBundle/DependencyInjection/Compiler/MakeFirewallsEventDispatcherTraceablePass.php +++ b/src/Symfony/Bundle/SecurityBundle/DependencyInjection/Compiler/MakeFirewallsEventDispatcherTraceablePass.php @@ -26,5 +26,5 @@ class MakeFirewallsEventDispatcherTraceablePass implements CompilerPassInterface @@ -866,7 +809,6 @@ index e7c77d1ec3..419e18f6f0 100644 { if (!$container->has('event_dispatcher') || !$container->hasParameter('security.firewalls')) { diff --git a/src/Symfony/Bundle/SecurityBundle/DependencyInjection/Compiler/RegisterEntryPointPass.php b/src/Symfony/Bundle/SecurityBundle/DependencyInjection/Compiler/RegisterEntryPointPass.php -index 3ca2a70acb..2ba4a41499 100644 --- a/src/Symfony/Bundle/SecurityBundle/DependencyInjection/Compiler/RegisterEntryPointPass.php +++ b/src/Symfony/Bundle/SecurityBundle/DependencyInjection/Compiler/RegisterEntryPointPass.php @@ -27,5 +27,5 @@ class RegisterEntryPointPass implements CompilerPassInterface @@ -877,7 +819,6 @@ index 3ca2a70acb..2ba4a41499 100644 { if (!$container->hasParameter('security.firewalls')) { diff --git a/src/Symfony/Bundle/SecurityBundle/DependencyInjection/Security/Factory/AbstractFactory.php b/src/Symfony/Bundle/SecurityBundle/DependencyInjection/Security/Factory/AbstractFactory.php -index 24eb1377c5..6367585643 100644 --- a/src/Symfony/Bundle/SecurityBundle/DependencyInjection/Security/Factory/AbstractFactory.php +++ b/src/Symfony/Bundle/SecurityBundle/DependencyInjection/Security/Factory/AbstractFactory.php @@ -56,5 +56,5 @@ abstract class AbstractFactory implements AuthenticatorFactoryInterface @@ -916,7 +857,6 @@ index 24eb1377c5..6367585643 100644 { return 'security.authentication.failure_handler.'.$id.'.'.str_replace('-', '_', $this->getKey()); diff --git a/src/Symfony/Bundle/SecurityBundle/DependencyInjection/Security/Factory/AuthenticatorFactoryInterface.php b/src/Symfony/Bundle/SecurityBundle/DependencyInjection/Security/Factory/AuthenticatorFactoryInterface.php -index 8082b6f352..bd9e1cff26 100644 --- a/src/Symfony/Bundle/SecurityBundle/DependencyInjection/Security/Factory/AuthenticatorFactoryInterface.php +++ b/src/Symfony/Bundle/SecurityBundle/DependencyInjection/Security/Factory/AuthenticatorFactoryInterface.php @@ -34,5 +34,5 @@ interface AuthenticatorFactoryInterface @@ -927,7 +867,6 @@ index 8082b6f352..bd9e1cff26 100644 /** diff --git a/src/Symfony/Bundle/SecurityBundle/DependencyInjection/Security/UserProvider/InMemoryFactory.php b/src/Symfony/Bundle/SecurityBundle/DependencyInjection/Security/UserProvider/InMemoryFactory.php -index 936f58a084..1a3c89381b 100644 --- a/src/Symfony/Bundle/SecurityBundle/DependencyInjection/Security/UserProvider/InMemoryFactory.php +++ b/src/Symfony/Bundle/SecurityBundle/DependencyInjection/Security/UserProvider/InMemoryFactory.php @@ -28,5 +28,5 @@ class InMemoryFactory implements UserProviderFactoryInterface @@ -952,7 +891,6 @@ index 936f58a084..1a3c89381b 100644 { $node diff --git a/src/Symfony/Bundle/SecurityBundle/DependencyInjection/Security/UserProvider/LdapFactory.php b/src/Symfony/Bundle/SecurityBundle/DependencyInjection/Security/UserProvider/LdapFactory.php -index 2f4dca01d1..ca99ad286f 100644 --- a/src/Symfony/Bundle/SecurityBundle/DependencyInjection/Security/UserProvider/LdapFactory.php +++ b/src/Symfony/Bundle/SecurityBundle/DependencyInjection/Security/UserProvider/LdapFactory.php @@ -28,5 +28,5 @@ class LdapFactory implements UserProviderFactoryInterface @@ -977,7 +915,6 @@ index 2f4dca01d1..ca99ad286f 100644 { $node diff --git a/src/Symfony/Bundle/SecurityBundle/DependencyInjection/Security/UserProvider/UserProviderFactoryInterface.php b/src/Symfony/Bundle/SecurityBundle/DependencyInjection/Security/UserProvider/UserProviderFactoryInterface.php -index a2c5815e4b..1c9721ccc6 100644 --- a/src/Symfony/Bundle/SecurityBundle/DependencyInjection/Security/UserProvider/UserProviderFactoryInterface.php +++ b/src/Symfony/Bundle/SecurityBundle/DependencyInjection/Security/UserProvider/UserProviderFactoryInterface.php @@ -26,14 +26,14 @@ interface UserProviderFactoryInterface @@ -999,7 +936,6 @@ index a2c5815e4b..1c9721ccc6 100644 + public function addConfiguration(NodeDefinition $builder): void; } diff --git a/src/Symfony/Bundle/SecurityBundle/DependencyInjection/SecurityExtension.php b/src/Symfony/Bundle/SecurityBundle/DependencyInjection/SecurityExtension.php -index ddb1d3cc92..18203f5104 100644 --- a/src/Symfony/Bundle/SecurityBundle/DependencyInjection/SecurityExtension.php +++ b/src/Symfony/Bundle/SecurityBundle/DependencyInjection/SecurityExtension.php @@ -82,5 +82,5 @@ class SecurityExtension extends Extension implements PrependExtensionInterface @@ -1017,7 +953,6 @@ index ddb1d3cc92..18203f5104 100644 { if (!array_filter($configs)) { diff --git a/src/Symfony/Bundle/SecurityBundle/EventListener/FirewallListener.php b/src/Symfony/Bundle/SecurityBundle/EventListener/FirewallListener.php -index 0c703f79cf..7d9e956580 100644 --- a/src/Symfony/Bundle/SecurityBundle/EventListener/FirewallListener.php +++ b/src/Symfony/Bundle/SecurityBundle/EventListener/FirewallListener.php @@ -40,5 +40,5 @@ class FirewallListener extends Firewall @@ -1035,7 +970,6 @@ index 0c703f79cf..7d9e956580 100644 { if ($event->isMainRequest()) { diff --git a/src/Symfony/Bundle/SecurityBundle/Security/FirewallContext.php b/src/Symfony/Bundle/SecurityBundle/Security/FirewallContext.php -index 5077c6768d..bd741840f4 100644 --- a/src/Symfony/Bundle/SecurityBundle/Security/FirewallContext.php +++ b/src/Symfony/Bundle/SecurityBundle/Security/FirewallContext.php @@ -42,5 +42,5 @@ class FirewallContext @@ -1060,7 +994,6 @@ index 5077c6768d..bd741840f4 100644 { return $this->logoutListener; diff --git a/src/Symfony/Bundle/SecurityBundle/SecurityBundle.php b/src/Symfony/Bundle/SecurityBundle/SecurityBundle.php -index 2cbca705f9..42cfdb0ff0 100644 --- a/src/Symfony/Bundle/SecurityBundle/SecurityBundle.php +++ b/src/Symfony/Bundle/SecurityBundle/SecurityBundle.php @@ -60,5 +60,5 @@ class SecurityBundle extends Bundle @@ -1071,7 +1004,6 @@ index 2cbca705f9..42cfdb0ff0 100644 { parent::build($container); diff --git a/src/Symfony/Bundle/TwigBundle/DependencyInjection/Compiler/ExtensionPass.php b/src/Symfony/Bundle/TwigBundle/DependencyInjection/Compiler/ExtensionPass.php -index 63dd68e91b..48889647a1 100644 --- a/src/Symfony/Bundle/TwigBundle/DependencyInjection/Compiler/ExtensionPass.php +++ b/src/Symfony/Bundle/TwigBundle/DependencyInjection/Compiler/ExtensionPass.php @@ -29,5 +29,5 @@ class ExtensionPass implements CompilerPassInterface @@ -1082,7 +1014,6 @@ index 63dd68e91b..48889647a1 100644 { if (!class_exists(Packages::class)) { diff --git a/src/Symfony/Bundle/TwigBundle/DependencyInjection/Compiler/RuntimeLoaderPass.php b/src/Symfony/Bundle/TwigBundle/DependencyInjection/Compiler/RuntimeLoaderPass.php -index ecb99ce20e..212ebbc96f 100644 --- a/src/Symfony/Bundle/TwigBundle/DependencyInjection/Compiler/RuntimeLoaderPass.php +++ b/src/Symfony/Bundle/TwigBundle/DependencyInjection/Compiler/RuntimeLoaderPass.php @@ -25,5 +25,5 @@ class RuntimeLoaderPass implements CompilerPassInterface @@ -1093,7 +1024,6 @@ index ecb99ce20e..212ebbc96f 100644 { if (!$container->hasDefinition('twig.runtime_loader')) { diff --git a/src/Symfony/Bundle/TwigBundle/DependencyInjection/Compiler/TwigEnvironmentPass.php b/src/Symfony/Bundle/TwigBundle/DependencyInjection/Compiler/TwigEnvironmentPass.php -index 99b975edea..2c9e2d326d 100644 --- a/src/Symfony/Bundle/TwigBundle/DependencyInjection/Compiler/TwigEnvironmentPass.php +++ b/src/Symfony/Bundle/TwigBundle/DependencyInjection/Compiler/TwigEnvironmentPass.php @@ -28,5 +28,5 @@ class TwigEnvironmentPass implements CompilerPassInterface @@ -1104,7 +1034,6 @@ index 99b975edea..2c9e2d326d 100644 { if (false === $container->hasDefinition('twig')) { diff --git a/src/Symfony/Bundle/TwigBundle/DependencyInjection/Compiler/TwigLoaderPass.php b/src/Symfony/Bundle/TwigBundle/DependencyInjection/Compiler/TwigLoaderPass.php -index 1da7e86797..eb6df32373 100644 --- a/src/Symfony/Bundle/TwigBundle/DependencyInjection/Compiler/TwigLoaderPass.php +++ b/src/Symfony/Bundle/TwigBundle/DependencyInjection/Compiler/TwigLoaderPass.php @@ -27,5 +27,5 @@ class TwigLoaderPass implements CompilerPassInterface @@ -1115,7 +1044,6 @@ index 1da7e86797..eb6df32373 100644 { if (false === $container->hasDefinition('twig')) { diff --git a/src/Symfony/Bundle/TwigBundle/DependencyInjection/Configurator/EnvironmentConfigurator.php b/src/Symfony/Bundle/TwigBundle/DependencyInjection/Configurator/EnvironmentConfigurator.php -index b3eec9ff60..742be71a64 100644 --- a/src/Symfony/Bundle/TwigBundle/DependencyInjection/Configurator/EnvironmentConfigurator.php +++ b/src/Symfony/Bundle/TwigBundle/DependencyInjection/Configurator/EnvironmentConfigurator.php @@ -46,5 +46,5 @@ class EnvironmentConfigurator @@ -1126,7 +1054,6 @@ index b3eec9ff60..742be71a64 100644 { $environment->getExtension(CoreExtension::class)->setDateFormat($this->dateFormat, $this->intervalFormat); diff --git a/src/Symfony/Bundle/TwigBundle/DependencyInjection/TwigExtension.php b/src/Symfony/Bundle/TwigBundle/DependencyInjection/TwigExtension.php -index f257f60298..b76392370a 100644 --- a/src/Symfony/Bundle/TwigBundle/DependencyInjection/TwigExtension.php +++ b/src/Symfony/Bundle/TwigBundle/DependencyInjection/TwigExtension.php @@ -40,5 +40,5 @@ class TwigExtension extends Extension @@ -1137,7 +1064,6 @@ index f257f60298..b76392370a 100644 { $loader = new PhpFileLoader($container, new FileLocator(__DIR__.'/../Resources/config')); diff --git a/src/Symfony/Bundle/TwigBundle/TwigBundle.php b/src/Symfony/Bundle/TwigBundle/TwigBundle.php -index 802cb536d1..d7e1017875 100644 --- a/src/Symfony/Bundle/TwigBundle/TwigBundle.php +++ b/src/Symfony/Bundle/TwigBundle/TwigBundle.php @@ -31,5 +31,5 @@ class TwigBundle extends Bundle @@ -1155,7 +1081,6 @@ index 802cb536d1..d7e1017875 100644 { // noop diff --git a/src/Symfony/Bundle/WebProfilerBundle/DependencyInjection/WebProfilerExtension.php b/src/Symfony/Bundle/WebProfilerBundle/DependencyInjection/WebProfilerExtension.php -index 16e6db29ee..1420b29c99 100644 --- a/src/Symfony/Bundle/WebProfilerBundle/DependencyInjection/WebProfilerExtension.php +++ b/src/Symfony/Bundle/WebProfilerBundle/DependencyInjection/WebProfilerExtension.php @@ -41,5 +41,5 @@ class WebProfilerExtension extends Extension @@ -1166,7 +1091,6 @@ index 16e6db29ee..1420b29c99 100644 { $configuration = $this->getConfiguration($configs, $container); diff --git a/src/Symfony/Bundle/WebProfilerBundle/WebProfilerBundle.php b/src/Symfony/Bundle/WebProfilerBundle/WebProfilerBundle.php -index 264b26c925..2dbc40c735 100644 --- a/src/Symfony/Bundle/WebProfilerBundle/WebProfilerBundle.php +++ b/src/Symfony/Bundle/WebProfilerBundle/WebProfilerBundle.php @@ -22,5 +22,5 @@ class WebProfilerBundle extends Bundle @@ -1177,7 +1101,6 @@ index 264b26c925..2dbc40c735 100644 { if ('prod' === $this->container->getParameter('kernel.environment')) { diff --git a/src/Symfony/Component/Asset/Packages.php b/src/Symfony/Component/Asset/Packages.php -index cffea43c49..0645fbd756 100644 --- a/src/Symfony/Component/Asset/Packages.php +++ b/src/Symfony/Component/Asset/Packages.php @@ -41,5 +41,5 @@ class Packages @@ -1195,7 +1118,6 @@ index cffea43c49..0645fbd756 100644 { $this->packages[$name] = $package; diff --git a/src/Symfony/Component/BrowserKit/AbstractBrowser.php b/src/Symfony/Component/BrowserKit/AbstractBrowser.php -index 5c263e6fac..3482ed2397 100644 --- a/src/Symfony/Component/BrowserKit/AbstractBrowser.php +++ b/src/Symfony/Component/BrowserKit/AbstractBrowser.php @@ -67,5 +67,5 @@ abstract class AbstractBrowser @@ -1283,7 +1205,6 @@ index 5c263e6fac..3482ed2397 100644 { $this->cookieJar->clear(); diff --git a/src/Symfony/Component/BrowserKit/CookieJar.php b/src/Symfony/Component/BrowserKit/CookieJar.php -index f851f81363..311a9f4eee 100644 --- a/src/Symfony/Component/BrowserKit/CookieJar.php +++ b/src/Symfony/Component/BrowserKit/CookieJar.php @@ -26,5 +26,5 @@ class CookieJar @@ -1329,7 +1250,6 @@ index f851f81363..311a9f4eee 100644 { foreach ($this->cookieJar as $domain => $pathCookies) { diff --git a/src/Symfony/Component/BrowserKit/History.php b/src/Symfony/Component/BrowserKit/History.php -index 7fce4e32b0..a7f192c5e3 100644 --- a/src/Symfony/Component/BrowserKit/History.php +++ b/src/Symfony/Component/BrowserKit/History.php @@ -29,5 +29,5 @@ class History @@ -1346,30 +1266,7 @@ index 7fce4e32b0..a7f192c5e3 100644 + public function add(Request $request): void { $this->stack = \array_slice($this->stack, 0, $this->position + 1); -diff --git a/src/Symfony/Component/BrowserKit/Tests/TestClient.php b/src/Symfony/Component/BrowserKit/Tests/TestClient.php -index c98c650298..47c76ad5e5 100644 ---- a/src/Symfony/Component/BrowserKit/Tests/TestClient.php -+++ b/src/Symfony/Component/BrowserKit/Tests/TestClient.php -@@ -42,5 +42,5 @@ class TestClient extends AbstractBrowser - } - -- protected function getScript(object $request) -+ protected function getScript(object $request): string - { - $r = new \ReflectionClass(Response::class); -diff --git a/src/Symfony/Component/BrowserKit/Tests/TestHttpClient.php b/src/Symfony/Component/BrowserKit/Tests/TestHttpClient.php -index afb0197c91..7a3c9a7ec6 100644 ---- a/src/Symfony/Component/BrowserKit/Tests/TestHttpClient.php -+++ b/src/Symfony/Component/BrowserKit/Tests/TestHttpClient.php -@@ -65,5 +65,5 @@ class TestHttpClient extends HttpBrowser - } - -- protected function getScript(object $request) -+ protected function getScript(object $request): string - { - $r = new \ReflectionClass(Response::class); diff --git a/src/Symfony/Component/Cache/Adapter/ApcuAdapter.php b/src/Symfony/Component/Cache/Adapter/ApcuAdapter.php -index 3dc93fd541..8a7df7a19b 100644 --- a/src/Symfony/Component/Cache/Adapter/ApcuAdapter.php +++ b/src/Symfony/Component/Cache/Adapter/ApcuAdapter.php @@ -51,5 +51,5 @@ class ApcuAdapter extends AbstractAdapter @@ -1380,7 +1277,6 @@ index 3dc93fd541..8a7df7a19b 100644 { return \function_exists('apcu_fetch') && filter_var(\ini_get('apc.enabled'), \FILTER_VALIDATE_BOOL); diff --git a/src/Symfony/Component/Cache/Adapter/ArrayAdapter.php b/src/Symfony/Component/Cache/Adapter/ArrayAdapter.php -index 319dc0487b..6a4f825360 100644 --- a/src/Symfony/Component/Cache/Adapter/ArrayAdapter.php +++ b/src/Symfony/Component/Cache/Adapter/ArrayAdapter.php @@ -264,5 +264,5 @@ class ArrayAdapter implements AdapterInterface, CacheInterface, LoggerAwareInter @@ -1391,7 +1287,6 @@ index 319dc0487b..6a4f825360 100644 { $this->clear(); diff --git a/src/Symfony/Component/Cache/Adapter/ChainAdapter.php b/src/Symfony/Component/Cache/Adapter/ChainAdapter.php -index ffaa56f3ed..c63206e18d 100644 --- a/src/Symfony/Component/Cache/Adapter/ChainAdapter.php +++ b/src/Symfony/Component/Cache/Adapter/ChainAdapter.php @@ -284,5 +284,5 @@ class ChainAdapter implements AdapterInterface, CacheInterface, PruneableInterfa @@ -1402,7 +1297,6 @@ index ffaa56f3ed..c63206e18d 100644 { foreach ($this->adapters as $adapter) { diff --git a/src/Symfony/Component/Cache/Adapter/MemcachedAdapter.php b/src/Symfony/Component/Cache/Adapter/MemcachedAdapter.php -index 054f6d1957..68731fb028 100644 --- a/src/Symfony/Component/Cache/Adapter/MemcachedAdapter.php +++ b/src/Symfony/Component/Cache/Adapter/MemcachedAdapter.php @@ -71,5 +71,5 @@ class MemcachedAdapter extends AbstractAdapter @@ -1413,7 +1307,6 @@ index 054f6d1957..68731fb028 100644 { return \extension_loaded('memcached') && version_compare(phpversion('memcached'), '3.1.6', '>='); diff --git a/src/Symfony/Component/Cache/Adapter/PdoAdapter.php b/src/Symfony/Component/Cache/Adapter/PdoAdapter.php -index dfffb3bd13..e4384af6cc 100644 --- a/src/Symfony/Component/Cache/Adapter/PdoAdapter.php +++ b/src/Symfony/Component/Cache/Adapter/PdoAdapter.php @@ -101,5 +101,5 @@ class PdoAdapter extends AbstractAdapter implements PruneableInterface @@ -1424,7 +1317,6 @@ index dfffb3bd13..e4384af6cc 100644 { // connect if we are not yet diff --git a/src/Symfony/Component/Cache/Adapter/PhpFilesAdapter.php b/src/Symfony/Component/Cache/Adapter/PhpFilesAdapter.php -index 6e4e1dffa3..bab8a91ca4 100644 --- a/src/Symfony/Component/Cache/Adapter/PhpFilesAdapter.php +++ b/src/Symfony/Component/Cache/Adapter/PhpFilesAdapter.php @@ -58,5 +58,5 @@ class PhpFilesAdapter extends AbstractAdapter implements PruneableInterface @@ -1442,7 +1334,6 @@ index 6e4e1dffa3..bab8a91ca4 100644 { unset(self::$valuesCache[$file]); diff --git a/src/Symfony/Component/Cache/Adapter/TagAwareAdapter.php b/src/Symfony/Component/Cache/Adapter/TagAwareAdapter.php -index f64ac99c11..84d32fb424 100644 --- a/src/Symfony/Component/Cache/Adapter/TagAwareAdapter.php +++ b/src/Symfony/Component/Cache/Adapter/TagAwareAdapter.php @@ -283,5 +283,5 @@ class TagAwareAdapter implements TagAwareAdapterInterface, TagAwareCacheInterfac @@ -1453,7 +1344,6 @@ index f64ac99c11..84d32fb424 100644 { $this->commit(); diff --git a/src/Symfony/Component/Cache/Adapter/TraceableAdapter.php b/src/Symfony/Component/Cache/Adapter/TraceableAdapter.php -index 118b009099..ba388b3ad8 100644 --- a/src/Symfony/Component/Cache/Adapter/TraceableAdapter.php +++ b/src/Symfony/Component/Cache/Adapter/TraceableAdapter.php @@ -196,5 +196,5 @@ class TraceableAdapter implements AdapterInterface, CacheInterface, PruneableInt @@ -1485,7 +1375,6 @@ index 118b009099..ba388b3ad8 100644 { $this->calls[] = $event = new TraceableAdapterEvent(); diff --git a/src/Symfony/Component/Cache/DependencyInjection/CacheCollectorPass.php b/src/Symfony/Component/Cache/DependencyInjection/CacheCollectorPass.php -index b50ca12308..6c39f61e89 100644 --- a/src/Symfony/Component/Cache/DependencyInjection/CacheCollectorPass.php +++ b/src/Symfony/Component/Cache/DependencyInjection/CacheCollectorPass.php @@ -30,5 +30,5 @@ class CacheCollectorPass implements CompilerPassInterface @@ -1496,7 +1385,6 @@ index b50ca12308..6c39f61e89 100644 { if (!$container->hasDefinition('data_collector.cache')) { diff --git a/src/Symfony/Component/Cache/DependencyInjection/CachePoolClearerPass.php b/src/Symfony/Component/Cache/DependencyInjection/CachePoolClearerPass.php -index 6793bea94c..230575ef42 100644 --- a/src/Symfony/Component/Cache/DependencyInjection/CachePoolClearerPass.php +++ b/src/Symfony/Component/Cache/DependencyInjection/CachePoolClearerPass.php @@ -24,5 +24,5 @@ class CachePoolClearerPass implements CompilerPassInterface @@ -1507,7 +1395,6 @@ index 6793bea94c..230575ef42 100644 { $container->getParameterBag()->remove('cache.prefix.seed'); diff --git a/src/Symfony/Component/Cache/DependencyInjection/CachePoolPass.php b/src/Symfony/Component/Cache/DependencyInjection/CachePoolPass.php -index 5055ba9918..3d92c9844f 100644 --- a/src/Symfony/Component/Cache/DependencyInjection/CachePoolPass.php +++ b/src/Symfony/Component/Cache/DependencyInjection/CachePoolPass.php @@ -33,5 +33,5 @@ class CachePoolPass implements CompilerPassInterface @@ -1518,7 +1405,6 @@ index 5055ba9918..3d92c9844f 100644 { if ($container->hasParameter('cache.prefix.seed')) { diff --git a/src/Symfony/Component/Cache/DependencyInjection/CachePoolPrunerPass.php b/src/Symfony/Component/Cache/DependencyInjection/CachePoolPrunerPass.php -index 00e912686b..58872ec2bc 100644 --- a/src/Symfony/Component/Cache/DependencyInjection/CachePoolPrunerPass.php +++ b/src/Symfony/Component/Cache/DependencyInjection/CachePoolPrunerPass.php @@ -27,5 +27,5 @@ class CachePoolPrunerPass implements CompilerPassInterface @@ -1529,7 +1415,6 @@ index 00e912686b..58872ec2bc 100644 { if (!$container->hasDefinition('console.command.cache_pool_prune')) { diff --git a/src/Symfony/Component/Cache/Traits/FilesystemCommonTrait.php b/src/Symfony/Component/Cache/Traits/FilesystemCommonTrait.php -index 200406a564..0bad73fe6a 100644 --- a/src/Symfony/Component/Cache/Traits/FilesystemCommonTrait.php +++ b/src/Symfony/Component/Cache/Traits/FilesystemCommonTrait.php @@ -81,5 +81,5 @@ trait FilesystemCommonTrait @@ -1540,7 +1425,6 @@ index 200406a564..0bad73fe6a 100644 { return @unlink($file); diff --git a/src/Symfony/Component/Config/ConfigCacheInterface.php b/src/Symfony/Component/Config/ConfigCacheInterface.php -index be7f0986c3..fa5347e34b 100644 --- a/src/Symfony/Component/Config/ConfigCacheInterface.php +++ b/src/Symfony/Component/Config/ConfigCacheInterface.php @@ -44,4 +44,4 @@ interface ConfigCacheInterface @@ -1550,7 +1434,6 @@ index be7f0986c3..fa5347e34b 100644 + public function write(string $content, array $metadata = null): void; } diff --git a/src/Symfony/Component/Config/Definition/ArrayNode.php b/src/Symfony/Component/Config/Definition/ArrayNode.php -index 1448220cdd..12935fb079 100644 --- a/src/Symfony/Component/Config/Definition/ArrayNode.php +++ b/src/Symfony/Component/Config/Definition/ArrayNode.php @@ -36,5 +36,5 @@ class ArrayNode extends BaseNode implements PrototypeNodeInterface @@ -1624,7 +1507,6 @@ index 1448220cdd..12935fb079 100644 { if (!\is_array($value) && (!$this->allowFalse || false !== $value)) { diff --git a/src/Symfony/Component/Config/Definition/BaseNode.php b/src/Symfony/Component/Config/Definition/BaseNode.php -index 85f0f7eebd..f2c3ca0d0d 100644 --- a/src/Symfony/Component/Config/Definition/BaseNode.php +++ b/src/Symfony/Component/Config/Definition/BaseNode.php @@ -102,5 +102,5 @@ abstract class BaseNode implements NodeInterface @@ -1719,7 +1601,6 @@ index 85f0f7eebd..f2c3ca0d0d 100644 /** diff --git a/src/Symfony/Component/Config/Definition/BooleanNode.php b/src/Symfony/Component/Config/Definition/BooleanNode.php -index 7ec903cd67..9a86de2559 100644 --- a/src/Symfony/Component/Config/Definition/BooleanNode.php +++ b/src/Symfony/Component/Config/Definition/BooleanNode.php @@ -24,5 +24,5 @@ class BooleanNode extends ScalarNode @@ -1730,7 +1611,6 @@ index 7ec903cd67..9a86de2559 100644 { if (!\is_bool($value)) { diff --git a/src/Symfony/Component/Config/Definition/Builder/ArrayNodeDefinition.php b/src/Symfony/Component/Config/Definition/Builder/ArrayNodeDefinition.php -index 0110f0502f..a5754c1464 100644 --- a/src/Symfony/Component/Config/Definition/Builder/ArrayNodeDefinition.php +++ b/src/Symfony/Component/Config/Definition/Builder/ArrayNodeDefinition.php @@ -49,5 +49,5 @@ class ArrayNodeDefinition extends NodeDefinition implements ParentNodeDefinition @@ -1755,7 +1635,6 @@ index 0110f0502f..a5754c1464 100644 { $path = $node->getPath(); diff --git a/src/Symfony/Component/Config/Definition/Builder/BuilderAwareInterface.php b/src/Symfony/Component/Config/Definition/Builder/BuilderAwareInterface.php -index bb40307e17..998fb85b27 100644 --- a/src/Symfony/Component/Config/Definition/Builder/BuilderAwareInterface.php +++ b/src/Symfony/Component/Config/Definition/Builder/BuilderAwareInterface.php @@ -24,4 +24,4 @@ interface BuilderAwareInterface @@ -1765,7 +1644,6 @@ index bb40307e17..998fb85b27 100644 + public function setBuilder(NodeBuilder $builder): void; } diff --git a/src/Symfony/Component/Config/Definition/Builder/NodeBuilder.php b/src/Symfony/Component/Config/Definition/Builder/NodeBuilder.php -index 7cda0bc7d8..b2311826f4 100644 --- a/src/Symfony/Component/Config/Definition/Builder/NodeBuilder.php +++ b/src/Symfony/Component/Config/Definition/Builder/NodeBuilder.php @@ -111,5 +111,5 @@ class NodeBuilder implements NodeParentInterface @@ -1776,7 +1654,6 @@ index 7cda0bc7d8..b2311826f4 100644 { return $this->parent; diff --git a/src/Symfony/Component/Config/Definition/Builder/TreeBuilder.php b/src/Symfony/Component/Config/Definition/Builder/TreeBuilder.php -index 4f868f7031..190b720b61 100644 --- a/src/Symfony/Component/Config/Definition/Builder/TreeBuilder.php +++ b/src/Symfony/Component/Config/Definition/Builder/TreeBuilder.php @@ -55,5 +55,5 @@ class TreeBuilder implements NodeParentInterface @@ -1787,7 +1664,6 @@ index 4f868f7031..190b720b61 100644 { // unset last built as changing path separator changes all nodes diff --git a/src/Symfony/Component/Config/Definition/ConfigurationInterface.php b/src/Symfony/Component/Config/Definition/ConfigurationInterface.php -index 7b5d443fe6..d64ae0d024 100644 --- a/src/Symfony/Component/Config/Definition/ConfigurationInterface.php +++ b/src/Symfony/Component/Config/Definition/ConfigurationInterface.php @@ -26,4 +26,4 @@ interface ConfigurationInterface @@ -1797,7 +1673,6 @@ index 7b5d443fe6..d64ae0d024 100644 + public function getConfigTreeBuilder(): TreeBuilder; } diff --git a/src/Symfony/Component/Config/Definition/Dumper/XmlReferenceDumper.php b/src/Symfony/Component/Config/Definition/Dumper/XmlReferenceDumper.php -index 34f93ce07d..0e7f1317d3 100644 --- a/src/Symfony/Component/Config/Definition/Dumper/XmlReferenceDumper.php +++ b/src/Symfony/Component/Config/Definition/Dumper/XmlReferenceDumper.php @@ -35,5 +35,5 @@ class XmlReferenceDumper @@ -1815,7 +1690,6 @@ index 34f93ce07d..0e7f1317d3 100644 { $this->reference = ''; diff --git a/src/Symfony/Component/Config/Definition/Dumper/YamlReferenceDumper.php b/src/Symfony/Component/Config/Definition/Dumper/YamlReferenceDumper.php -index 97a391adab..1a59318a40 100644 --- a/src/Symfony/Component/Config/Definition/Dumper/YamlReferenceDumper.php +++ b/src/Symfony/Component/Config/Definition/Dumper/YamlReferenceDumper.php @@ -34,5 +34,5 @@ class YamlReferenceDumper @@ -1840,7 +1714,6 @@ index 97a391adab..1a59318a40 100644 { $this->reference = ''; diff --git a/src/Symfony/Component/Config/Definition/EnumNode.php b/src/Symfony/Component/Config/Definition/EnumNode.php -index 4edeae9040..d562308fa2 100644 --- a/src/Symfony/Component/Config/Definition/EnumNode.php +++ b/src/Symfony/Component/Config/Definition/EnumNode.php @@ -50,5 +50,5 @@ class EnumNode extends ScalarNode @@ -1858,7 +1731,6 @@ index 4edeae9040..d562308fa2 100644 { if ($value instanceof \UnitEnum) { diff --git a/src/Symfony/Component/Config/Definition/Exception/InvalidConfigurationException.php b/src/Symfony/Component/Config/Definition/Exception/InvalidConfigurationException.php -index 794447bf8d..42db1e5a40 100644 --- a/src/Symfony/Component/Config/Definition/Exception/InvalidConfigurationException.php +++ b/src/Symfony/Component/Config/Definition/Exception/InvalidConfigurationException.php @@ -26,5 +26,5 @@ class InvalidConfigurationException extends Exception @@ -1876,7 +1748,6 @@ index 794447bf8d..42db1e5a40 100644 { if (!$this->containsHints) { diff --git a/src/Symfony/Component/Config/Definition/FloatNode.php b/src/Symfony/Component/Config/Definition/FloatNode.php -index ce4193e09c..64344cadb6 100644 --- a/src/Symfony/Component/Config/Definition/FloatNode.php +++ b/src/Symfony/Component/Config/Definition/FloatNode.php @@ -24,5 +24,5 @@ class FloatNode extends NumericNode @@ -1887,7 +1758,6 @@ index ce4193e09c..64344cadb6 100644 { // Integers are also accepted, we just cast them diff --git a/src/Symfony/Component/Config/Definition/IntegerNode.php b/src/Symfony/Component/Config/Definition/IntegerNode.php -index 4a3e3253ce..09957cd846 100644 --- a/src/Symfony/Component/Config/Definition/IntegerNode.php +++ b/src/Symfony/Component/Config/Definition/IntegerNode.php @@ -24,5 +24,5 @@ class IntegerNode extends NumericNode @@ -1898,7 +1768,6 @@ index 4a3e3253ce..09957cd846 100644 { if (!\is_int($value)) { diff --git a/src/Symfony/Component/Config/Definition/PrototypeNodeInterface.php b/src/Symfony/Component/Config/Definition/PrototypeNodeInterface.php -index 9dce7444b0..46ab38e3ff 100644 --- a/src/Symfony/Component/Config/Definition/PrototypeNodeInterface.php +++ b/src/Symfony/Component/Config/Definition/PrototypeNodeInterface.php @@ -24,4 +24,4 @@ interface PrototypeNodeInterface extends NodeInterface @@ -1908,7 +1777,6 @@ index 9dce7444b0..46ab38e3ff 100644 + public function setName(string $name): void; } diff --git a/src/Symfony/Component/Config/Definition/PrototypedArrayNode.php b/src/Symfony/Component/Config/Definition/PrototypedArrayNode.php -index c105ac1f30..1ea0880c9b 100644 --- a/src/Symfony/Component/Config/Definition/PrototypedArrayNode.php +++ b/src/Symfony/Component/Config/Definition/PrototypedArrayNode.php @@ -41,5 +41,5 @@ class PrototypedArrayNode extends ArrayNode @@ -1954,7 +1822,6 @@ index c105ac1f30..1ea0880c9b 100644 { throw new Exception('A prototyped array node cannot have concrete children.'); diff --git a/src/Symfony/Component/Config/Definition/ScalarNode.php b/src/Symfony/Component/Config/Definition/ScalarNode.php -index e11fa1ee1c..ee27f874d0 100644 --- a/src/Symfony/Component/Config/Definition/ScalarNode.php +++ b/src/Symfony/Component/Config/Definition/ScalarNode.php @@ -31,5 +31,5 @@ class ScalarNode extends VariableNode @@ -1965,7 +1832,6 @@ index e11fa1ee1c..ee27f874d0 100644 { if (!\is_scalar($value) && null !== $value) { diff --git a/src/Symfony/Component/Config/Definition/VariableNode.php b/src/Symfony/Component/Config/Definition/VariableNode.php -index 6bdc65b4e7..c5a3fb4f6f 100644 --- a/src/Symfony/Component/Config/Definition/VariableNode.php +++ b/src/Symfony/Component/Config/Definition/VariableNode.php @@ -31,5 +31,5 @@ class VariableNode extends BaseNode implements PrototypeNodeInterface @@ -1997,7 +1863,6 @@ index 6bdc65b4e7..c5a3fb4f6f 100644 { } diff --git a/src/Symfony/Component/Config/Exception/FileLocatorFileNotFoundException.php b/src/Symfony/Component/Config/Exception/FileLocatorFileNotFoundException.php -index c5173ae580..1f5aa3616e 100644 --- a/src/Symfony/Component/Config/Exception/FileLocatorFileNotFoundException.php +++ b/src/Symfony/Component/Config/Exception/FileLocatorFileNotFoundException.php @@ -31,5 +31,5 @@ class FileLocatorFileNotFoundException extends \InvalidArgumentException @@ -2008,7 +1873,6 @@ index c5173ae580..1f5aa3616e 100644 { return $this->paths; diff --git a/src/Symfony/Component/Config/Exception/LoaderLoadException.php b/src/Symfony/Component/Config/Exception/LoaderLoadException.php -index 57afd6a8db..3d662340ea 100644 --- a/src/Symfony/Component/Config/Exception/LoaderLoadException.php +++ b/src/Symfony/Component/Config/Exception/LoaderLoadException.php @@ -80,5 +80,5 @@ class LoaderLoadException extends \Exception @@ -2019,7 +1883,6 @@ index 57afd6a8db..3d662340ea 100644 { if (\is_object($var)) { diff --git a/src/Symfony/Component/Config/FileLocator.php b/src/Symfony/Component/Config/FileLocator.php -index e147d9b1aa..6b0ce493ea 100644 --- a/src/Symfony/Component/Config/FileLocator.php +++ b/src/Symfony/Component/Config/FileLocator.php @@ -34,5 +34,5 @@ class FileLocator implements FileLocatorInterface @@ -2030,7 +1893,6 @@ index e147d9b1aa..6b0ce493ea 100644 { if ('' === $name) { diff --git a/src/Symfony/Component/Config/FileLocatorInterface.php b/src/Symfony/Component/Config/FileLocatorInterface.php -index e3ca1d49c4..526d350484 100644 --- a/src/Symfony/Component/Config/FileLocatorInterface.php +++ b/src/Symfony/Component/Config/FileLocatorInterface.php @@ -31,4 +31,4 @@ interface FileLocatorInterface @@ -2040,7 +1902,6 @@ index e3ca1d49c4..526d350484 100644 + public function locate(string $name, string $currentPath = null, bool $first = true): string|array; } diff --git a/src/Symfony/Component/Config/Loader/FileLoader.php b/src/Symfony/Component/Config/Loader/FileLoader.php -index 8cfaa23ba2..68a4120506 100644 --- a/src/Symfony/Component/Config/Loader/FileLoader.php +++ b/src/Symfony/Component/Config/Loader/FileLoader.php @@ -43,5 +43,5 @@ abstract class FileLoader extends Loader @@ -2058,7 +1919,6 @@ index 8cfaa23ba2..68a4120506 100644 { if (\is_string($resource) && \strlen($resource) !== ($i = strcspn($resource, '*?{[')) && !str_contains($resource, "\n")) { diff --git a/src/Symfony/Component/Config/Loader/Loader.php b/src/Symfony/Component/Config/Loader/Loader.php -index 36e85ad346..bb6d9ca2fe 100644 --- a/src/Symfony/Component/Config/Loader/Loader.php +++ b/src/Symfony/Component/Config/Loader/Loader.php @@ -37,5 +37,5 @@ abstract class Loader implements LoaderInterface @@ -2076,7 +1936,6 @@ index 36e85ad346..bb6d9ca2fe 100644 { return $this->resolve($resource, $type)->load($resource, $type); diff --git a/src/Symfony/Component/Config/Loader/LoaderInterface.php b/src/Symfony/Component/Config/Loader/LoaderInterface.php -index 4e0746d4d6..c080bd63a9 100644 --- a/src/Symfony/Component/Config/Loader/LoaderInterface.php +++ b/src/Symfony/Component/Config/Loader/LoaderInterface.php @@ -26,5 +26,5 @@ interface LoaderInterface @@ -2107,7 +1966,6 @@ index 4e0746d4d6..c080bd63a9 100644 + public function setResolver(LoaderResolverInterface $resolver): void; } diff --git a/src/Symfony/Component/Config/Loader/LoaderResolver.php b/src/Symfony/Component/Config/Loader/LoaderResolver.php -index 670e320122..134e4069e7 100644 --- a/src/Symfony/Component/Config/Loader/LoaderResolver.php +++ b/src/Symfony/Component/Config/Loader/LoaderResolver.php @@ -51,5 +51,5 @@ class LoaderResolver implements LoaderResolverInterface @@ -2118,7 +1976,6 @@ index 670e320122..134e4069e7 100644 { $this->loaders[] = $loader; diff --git a/src/Symfony/Component/Config/ResourceCheckerConfigCache.php b/src/Symfony/Component/Config/ResourceCheckerConfigCache.php -index a8478a8cc3..d2ec80ec99 100644 --- a/src/Symfony/Component/Config/ResourceCheckerConfigCache.php +++ b/src/Symfony/Component/Config/ResourceCheckerConfigCache.php @@ -110,5 +110,5 @@ class ResourceCheckerConfigCache implements ConfigCacheInterface @@ -2129,7 +1986,6 @@ index a8478a8cc3..d2ec80ec99 100644 { $mode = 0666; diff --git a/src/Symfony/Component/Config/ResourceCheckerInterface.php b/src/Symfony/Component/Config/ResourceCheckerInterface.php -index 6b1c6c5fbe..bb80ed461e 100644 --- a/src/Symfony/Component/Config/ResourceCheckerInterface.php +++ b/src/Symfony/Component/Config/ResourceCheckerInterface.php @@ -33,5 +33,5 @@ interface ResourceCheckerInterface @@ -2146,7 +2002,6 @@ index 6b1c6c5fbe..bb80ed461e 100644 + public function isFresh(ResourceInterface $resource, int $timestamp): bool; } diff --git a/src/Symfony/Component/Config/Util/XmlUtils.php b/src/Symfony/Component/Config/Util/XmlUtils.php -index cc024da461..00b79e915f 100644 --- a/src/Symfony/Component/Config/Util/XmlUtils.php +++ b/src/Symfony/Component/Config/Util/XmlUtils.php @@ -242,5 +242,5 @@ class XmlUtils @@ -2157,7 +2012,6 @@ index cc024da461..00b79e915f 100644 { $errors = []; diff --git a/src/Symfony/Component/Console/Application.php b/src/Symfony/Component/Console/Application.php -index b7aaa6a29e..dd14cf2c5c 100644 --- a/src/Symfony/Component/Console/Application.php +++ b/src/Symfony/Component/Console/Application.php @@ -114,5 +114,5 @@ class Application implements ResetInterface @@ -2287,7 +2141,6 @@ index b7aaa6a29e..dd14cf2c5c 100644 { foreach ($command->getHelperSet() as $helper) { diff --git a/src/Symfony/Component/Console/Command/Command.php b/src/Symfony/Component/Console/Command/Command.php -index 704b112d1a..b296bffcbd 100644 --- a/src/Symfony/Component/Console/Command/Command.php +++ b/src/Symfony/Component/Console/Command/Command.php @@ -145,5 +145,5 @@ class Command @@ -2354,7 +2207,6 @@ index 704b112d1a..b296bffcbd 100644 { if (null === $this->helperSet) { diff --git a/src/Symfony/Component/Console/Command/HelpCommand.php b/src/Symfony/Component/Console/Command/HelpCommand.php -index e6447b0506..be85331bc3 100644 --- a/src/Symfony/Component/Console/Command/HelpCommand.php +++ b/src/Symfony/Component/Console/Command/HelpCommand.php @@ -31,5 +31,5 @@ class HelpCommand extends Command @@ -2372,7 +2224,6 @@ index e6447b0506..be85331bc3 100644 { $this->command = $command; diff --git a/src/Symfony/Component/Console/Command/ListCommand.php b/src/Symfony/Component/Console/Command/ListCommand.php -index 5850c3d7b8..e2371f88fd 100644 --- a/src/Symfony/Component/Console/Command/ListCommand.php +++ b/src/Symfony/Component/Console/Command/ListCommand.php @@ -29,5 +29,5 @@ class ListCommand extends Command @@ -2383,7 +2234,6 @@ index 5850c3d7b8..e2371f88fd 100644 { $this diff --git a/src/Symfony/Component/Console/Command/SignalableCommandInterface.php b/src/Symfony/Component/Console/Command/SignalableCommandInterface.php -index 4d0876003d..d33732acb6 100644 --- a/src/Symfony/Component/Console/Command/SignalableCommandInterface.php +++ b/src/Symfony/Component/Console/Command/SignalableCommandInterface.php @@ -31,4 +31,4 @@ interface SignalableCommandInterface @@ -2393,7 +2243,6 @@ index 4d0876003d..d33732acb6 100644 + public function handleSignal(int $signal, /* int|false $previousExitCode = 0 */): int|false; } diff --git a/src/Symfony/Component/Console/DependencyInjection/AddConsoleCommandPass.php b/src/Symfony/Component/Console/DependencyInjection/AddConsoleCommandPass.php -index 27705ddb63..1b25473f75 100644 --- a/src/Symfony/Component/Console/DependencyInjection/AddConsoleCommandPass.php +++ b/src/Symfony/Component/Console/DependencyInjection/AddConsoleCommandPass.php @@ -33,5 +33,5 @@ class AddConsoleCommandPass implements CompilerPassInterface @@ -2404,7 +2253,6 @@ index 27705ddb63..1b25473f75 100644 { $commandServices = $container->findTaggedServiceIds('console.command', true); diff --git a/src/Symfony/Component/Console/Descriptor/DescriptorInterface.php b/src/Symfony/Component/Console/Descriptor/DescriptorInterface.php -index ab468a2562..e20f80d56b 100644 --- a/src/Symfony/Component/Console/Descriptor/DescriptorInterface.php +++ b/src/Symfony/Component/Console/Descriptor/DescriptorInterface.php @@ -24,4 +24,4 @@ interface DescriptorInterface @@ -2414,7 +2262,6 @@ index ab468a2562..e20f80d56b 100644 + public function describe(OutputInterface $output, object $object, array $options = []): void; } diff --git a/src/Symfony/Component/Console/EventListener/ErrorListener.php b/src/Symfony/Component/Console/EventListener/ErrorListener.php -index 9925a5f746..e72fb5fc89 100644 --- a/src/Symfony/Component/Console/EventListener/ErrorListener.php +++ b/src/Symfony/Component/Console/EventListener/ErrorListener.php @@ -35,5 +35,5 @@ class ErrorListener implements EventSubscriberInterface @@ -2432,7 +2279,6 @@ index 9925a5f746..e72fb5fc89 100644 { if (null === $this->logger) { diff --git a/src/Symfony/Component/Console/Formatter/OutputFormatter.php b/src/Symfony/Component/Console/Formatter/OutputFormatter.php -index 9cb6310484..327aa3671c 100644 --- a/src/Symfony/Component/Console/Formatter/OutputFormatter.php +++ b/src/Symfony/Component/Console/Formatter/OutputFormatter.php @@ -85,5 +85,5 @@ class OutputFormatter implements WrappableOutputFormatterInterface @@ -2457,7 +2303,6 @@ index 9cb6310484..327aa3671c 100644 { if (null === $message) { diff --git a/src/Symfony/Component/Console/Formatter/OutputFormatterInterface.php b/src/Symfony/Component/Console/Formatter/OutputFormatterInterface.php -index 433cd41978..02187a7ffc 100644 --- a/src/Symfony/Component/Console/Formatter/OutputFormatterInterface.php +++ b/src/Symfony/Component/Console/Formatter/OutputFormatterInterface.php @@ -24,5 +24,5 @@ interface OutputFormatterInterface @@ -2475,7 +2320,6 @@ index 433cd41978..02187a7ffc 100644 /** diff --git a/src/Symfony/Component/Console/Formatter/OutputFormatterStyle.php b/src/Symfony/Component/Console/Formatter/OutputFormatterStyle.php -index 346a474c61..db3012ced8 100644 --- a/src/Symfony/Component/Console/Formatter/OutputFormatterStyle.php +++ b/src/Symfony/Component/Console/Formatter/OutputFormatterStyle.php @@ -42,5 +42,5 @@ class OutputFormatterStyle implements OutputFormatterStyleInterface @@ -2514,7 +2358,6 @@ index 346a474c61..db3012ced8 100644 { $this->color = new Color($this->foreground, $this->background, $this->options = $options); diff --git a/src/Symfony/Component/Console/Formatter/OutputFormatterStyleInterface.php b/src/Symfony/Component/Console/Formatter/OutputFormatterStyleInterface.php -index 3b15098cbe..3f850e129b 100644 --- a/src/Symfony/Component/Console/Formatter/OutputFormatterStyleInterface.php +++ b/src/Symfony/Component/Console/Formatter/OutputFormatterStyleInterface.php @@ -24,5 +24,5 @@ interface OutputFormatterStyleInterface @@ -2553,7 +2396,6 @@ index 3b15098cbe..3f850e129b 100644 /** diff --git a/src/Symfony/Component/Console/Formatter/OutputFormatterStyleStack.php b/src/Symfony/Component/Console/Formatter/OutputFormatterStyleStack.php -index f98c2eff7c..5d9c2c246f 100644 --- a/src/Symfony/Component/Console/Formatter/OutputFormatterStyleStack.php +++ b/src/Symfony/Component/Console/Formatter/OutputFormatterStyleStack.php @@ -38,5 +38,5 @@ class OutputFormatterStyleStack implements ResetInterface @@ -2571,7 +2413,6 @@ index f98c2eff7c..5d9c2c246f 100644 { $this->styles[] = $style; diff --git a/src/Symfony/Component/Console/Formatter/WrappableOutputFormatterInterface.php b/src/Symfony/Component/Console/Formatter/WrappableOutputFormatterInterface.php -index 746cd27e79..52c61429cf 100644 --- a/src/Symfony/Component/Console/Formatter/WrappableOutputFormatterInterface.php +++ b/src/Symfony/Component/Console/Formatter/WrappableOutputFormatterInterface.php @@ -24,4 +24,4 @@ interface WrappableOutputFormatterInterface extends OutputFormatterInterface @@ -2581,7 +2422,6 @@ index 746cd27e79..52c61429cf 100644 + public function formatAndWrap(?string $message, int $width): string; } diff --git a/src/Symfony/Component/Console/Helper/DescriptorHelper.php b/src/Symfony/Component/Console/Helper/DescriptorHelper.php -index eb32bce8fc..57edd56954 100644 --- a/src/Symfony/Component/Console/Helper/DescriptorHelper.php +++ b/src/Symfony/Component/Console/Helper/DescriptorHelper.php @@ -55,5 +55,5 @@ class DescriptorHelper extends Helper @@ -2592,7 +2432,6 @@ index eb32bce8fc..57edd56954 100644 { $options = array_merge([ diff --git a/src/Symfony/Component/Console/Helper/Helper.php b/src/Symfony/Component/Console/Helper/Helper.php -index 3631b30f69..5e4407a591 100644 --- a/src/Symfony/Component/Console/Helper/Helper.php +++ b/src/Symfony/Component/Console/Helper/Helper.php @@ -27,5 +27,5 @@ abstract class Helper implements HelperInterface @@ -2624,7 +2463,6 @@ index 3631b30f69..5e4407a591 100644 { $isDecorated = $formatter->isDecorated(); diff --git a/src/Symfony/Component/Console/Helper/HelperInterface.php b/src/Symfony/Component/Console/Helper/HelperInterface.php -index ab626c9385..d9d069d3e5 100644 --- a/src/Symfony/Component/Console/Helper/HelperInterface.php +++ b/src/Symfony/Component/Console/Helper/HelperInterface.php @@ -24,5 +24,5 @@ interface HelperInterface @@ -2641,7 +2479,6 @@ index ab626c9385..d9d069d3e5 100644 + public function getName(): string; } diff --git a/src/Symfony/Component/Console/Helper/HelperSet.php b/src/Symfony/Component/Console/Helper/HelperSet.php -index dc5d499caa..e19192da81 100644 --- a/src/Symfony/Component/Console/Helper/HelperSet.php +++ b/src/Symfony/Component/Console/Helper/HelperSet.php @@ -39,5 +39,5 @@ class HelperSet implements \IteratorAggregate @@ -2652,7 +2489,6 @@ index dc5d499caa..e19192da81 100644 { $this->helpers[$helper->getName()] = $helper; diff --git a/src/Symfony/Component/Console/Helper/InputAwareHelper.php b/src/Symfony/Component/Console/Helper/InputAwareHelper.php -index 6f8225973c..5f3640c346 100644 --- a/src/Symfony/Component/Console/Helper/InputAwareHelper.php +++ b/src/Symfony/Component/Console/Helper/InputAwareHelper.php @@ -27,5 +27,5 @@ abstract class InputAwareHelper extends Helper implements InputAwareInterface @@ -2663,7 +2499,6 @@ index 6f8225973c..5f3640c346 100644 { $this->input = $input; diff --git a/src/Symfony/Component/Console/Helper/ProgressIndicator.php b/src/Symfony/Component/Console/Helper/ProgressIndicator.php -index 84dbef950c..5a38c8c28a 100644 --- a/src/Symfony/Component/Console/Helper/ProgressIndicator.php +++ b/src/Symfony/Component/Console/Helper/ProgressIndicator.php @@ -74,5 +74,5 @@ class ProgressIndicator @@ -2702,7 +2537,6 @@ index 84dbef950c..5a38c8c28a 100644 { self::$formatters ??= self::initPlaceholderFormatters(); diff --git a/src/Symfony/Component/Console/Helper/QuestionHelper.php b/src/Symfony/Component/Console/Helper/QuestionHelper.php -index f32813c6c5..93cb49a1be 100644 --- a/src/Symfony/Component/Console/Helper/QuestionHelper.php +++ b/src/Symfony/Component/Console/Helper/QuestionHelper.php @@ -93,5 +93,5 @@ class QuestionHelper extends Helper @@ -2727,7 +2561,6 @@ index f32813c6c5..93cb49a1be 100644 { if (null !== $this->getHelperSet() && $this->getHelperSet()->has('formatter')) { diff --git a/src/Symfony/Component/Console/Helper/SymfonyQuestionHelper.php b/src/Symfony/Component/Console/Helper/SymfonyQuestionHelper.php -index 8ebc84376b..4af2691707 100644 --- a/src/Symfony/Component/Console/Helper/SymfonyQuestionHelper.php +++ b/src/Symfony/Component/Console/Helper/SymfonyQuestionHelper.php @@ -29,5 +29,5 @@ class SymfonyQuestionHelper extends QuestionHelper @@ -2745,7 +2578,6 @@ index 8ebc84376b..4af2691707 100644 { if ($output instanceof SymfonyStyle) { diff --git a/src/Symfony/Component/Console/Helper/Table.php b/src/Symfony/Component/Console/Helper/Table.php -index cf714873f5..e16ffaf97d 100644 --- a/src/Symfony/Component/Console/Helper/Table.php +++ b/src/Symfony/Component/Console/Helper/Table.php @@ -70,5 +70,5 @@ class Table @@ -2770,7 +2602,6 @@ index cf714873f5..e16ffaf97d 100644 { $divider = new TableSeparator(); diff --git a/src/Symfony/Component/Console/Input/ArgvInput.php b/src/Symfony/Component/Console/Input/ArgvInput.php -index 59f9217ec5..77b402b7d7 100644 --- a/src/Symfony/Component/Console/Input/ArgvInput.php +++ b/src/Symfony/Component/Console/Input/ArgvInput.php @@ -59,5 +59,5 @@ class ArgvInput extends Input @@ -2788,7 +2619,6 @@ index 59f9217ec5..77b402b7d7 100644 { $parseOptions = true; diff --git a/src/Symfony/Component/Console/Input/ArrayInput.php b/src/Symfony/Component/Console/Input/ArrayInput.php -index 355de61dd6..c6b82a2886 100644 --- a/src/Symfony/Component/Console/Input/ArrayInput.php +++ b/src/Symfony/Component/Console/Input/ArrayInput.php @@ -117,5 +117,5 @@ class ArrayInput extends Input @@ -2799,7 +2629,6 @@ index 355de61dd6..c6b82a2886 100644 { foreach ($this->parameters as $key => $value) { diff --git a/src/Symfony/Component/Console/Input/Input.php b/src/Symfony/Component/Console/Input/Input.php -index 0f5617cd17..bdd5dd264f 100644 --- a/src/Symfony/Component/Console/Input/Input.php +++ b/src/Symfony/Component/Console/Input/Input.php @@ -47,5 +47,5 @@ abstract class Input implements InputInterface, StreamableInputInterface @@ -2851,7 +2680,6 @@ index 0f5617cd17..bdd5dd264f 100644 { $this->stream = $stream; diff --git a/src/Symfony/Component/Console/Input/InputArgument.php b/src/Symfony/Component/Console/Input/InputArgument.php -index 5cb151488d..2dc276a372 100644 --- a/src/Symfony/Component/Console/Input/InputArgument.php +++ b/src/Symfony/Component/Console/Input/InputArgument.php @@ -96,5 +96,5 @@ class InputArgument @@ -2862,7 +2690,6 @@ index 5cb151488d..2dc276a372 100644 { if (1 > \func_num_args()) { diff --git a/src/Symfony/Component/Console/Input/InputAwareInterface.php b/src/Symfony/Component/Console/Input/InputAwareInterface.php -index 0ad27b4558..f5e544930e 100644 --- a/src/Symfony/Component/Console/Input/InputAwareInterface.php +++ b/src/Symfony/Component/Console/Input/InputAwareInterface.php @@ -25,4 +25,4 @@ interface InputAwareInterface @@ -2872,7 +2699,6 @@ index 0ad27b4558..f5e544930e 100644 + public function setInput(InputInterface $input): void; } diff --git a/src/Symfony/Component/Console/Input/InputDefinition.php b/src/Symfony/Component/Console/Input/InputDefinition.php -index b7162d7706..3d41be7340 100644 --- a/src/Symfony/Component/Console/Input/InputDefinition.php +++ b/src/Symfony/Component/Console/Input/InputDefinition.php @@ -50,5 +50,5 @@ class InputDefinition @@ -2925,7 +2751,6 @@ index b7162d7706..3d41be7340 100644 { if (isset($this->options[$option->getName()]) && !$option->equals($this->options[$option->getName()])) { diff --git a/src/Symfony/Component/Console/Input/InputInterface.php b/src/Symfony/Component/Console/Input/InputInterface.php -index aaed5fd01d..e7de9bcdec 100644 --- a/src/Symfony/Component/Console/Input/InputInterface.php +++ b/src/Symfony/Component/Console/Input/InputInterface.php @@ -57,5 +57,5 @@ interface InputInterface @@ -2984,7 +2809,6 @@ index aaed5fd01d..e7de9bcdec 100644 + public function setInteractive(bool $interactive): void; } diff --git a/src/Symfony/Component/Console/Input/InputOption.php b/src/Symfony/Component/Console/Input/InputOption.php -index fdf88dcc27..cf7a71a3c4 100644 --- a/src/Symfony/Component/Console/Input/InputOption.php +++ b/src/Symfony/Component/Console/Input/InputOption.php @@ -182,5 +182,5 @@ class InputOption @@ -2995,7 +2819,6 @@ index fdf88dcc27..cf7a71a3c4 100644 { if (1 > \func_num_args()) { diff --git a/src/Symfony/Component/Console/Input/StreamableInputInterface.php b/src/Symfony/Component/Console/Input/StreamableInputInterface.php -index 4b95fcb11e..b95fab2601 100644 --- a/src/Symfony/Component/Console/Input/StreamableInputInterface.php +++ b/src/Symfony/Component/Console/Input/StreamableInputInterface.php @@ -29,5 +29,5 @@ interface StreamableInputInterface extends InputInterface @@ -3006,7 +2829,6 @@ index 4b95fcb11e..b95fab2601 100644 /** diff --git a/src/Symfony/Component/Console/Output/BufferedOutput.php b/src/Symfony/Component/Console/Output/BufferedOutput.php -index ef5099bfd6..8fb59d794d 100644 --- a/src/Symfony/Component/Console/Output/BufferedOutput.php +++ b/src/Symfony/Component/Console/Output/BufferedOutput.php @@ -33,5 +33,5 @@ class BufferedOutput extends Output @@ -3017,7 +2839,6 @@ index ef5099bfd6..8fb59d794d 100644 { $this->buffer .= $message; diff --git a/src/Symfony/Component/Console/Output/ConsoleOutput.php b/src/Symfony/Component/Console/Output/ConsoleOutput.php -index c1eb7cd14b..c7fc040bb4 100644 --- a/src/Symfony/Component/Console/Output/ConsoleOutput.php +++ b/src/Symfony/Component/Console/Output/ConsoleOutput.php @@ -68,5 +68,5 @@ class ConsoleOutput extends StreamOutput implements ConsoleOutputInterface @@ -3049,7 +2870,6 @@ index c1eb7cd14b..c7fc040bb4 100644 { $this->stderr = $error; diff --git a/src/Symfony/Component/Console/Output/ConsoleOutputInterface.php b/src/Symfony/Component/Console/Output/ConsoleOutputInterface.php -index 9c0049c8f9..6ab9a753d5 100644 --- a/src/Symfony/Component/Console/Output/ConsoleOutputInterface.php +++ b/src/Symfony/Component/Console/Output/ConsoleOutputInterface.php @@ -28,5 +28,5 @@ interface ConsoleOutputInterface extends OutputInterface @@ -3060,7 +2880,6 @@ index 9c0049c8f9..6ab9a753d5 100644 public function section(): ConsoleSectionOutput; diff --git a/src/Symfony/Component/Console/Output/ConsoleSectionOutput.php b/src/Symfony/Component/Console/Output/ConsoleSectionOutput.php -index 3f3f1434be..594880b9e3 100644 --- a/src/Symfony/Component/Console/Output/ConsoleSectionOutput.php +++ b/src/Symfony/Component/Console/Output/ConsoleSectionOutput.php @@ -64,5 +64,5 @@ class ConsoleSectionOutput extends StreamOutput @@ -3085,7 +2904,6 @@ index 3f3f1434be..594880b9e3 100644 { if (!$this->isDecorated()) { diff --git a/src/Symfony/Component/Console/Output/NullOutput.php b/src/Symfony/Component/Console/Output/NullOutput.php -index f3aa15b1d4..206df78910 100644 --- a/src/Symfony/Component/Console/Output/NullOutput.php +++ b/src/Symfony/Component/Console/Output/NullOutput.php @@ -30,5 +30,5 @@ class NullOutput implements OutputInterface @@ -3124,7 +2942,6 @@ index f3aa15b1d4..206df78910 100644 { // do nothing diff --git a/src/Symfony/Component/Console/Output/Output.php b/src/Symfony/Component/Console/Output/Output.php -index 3a06311a8b..8204b8a744 100644 --- a/src/Symfony/Component/Console/Output/Output.php +++ b/src/Symfony/Component/Console/Output/Output.php @@ -48,5 +48,5 @@ abstract class Output implements OutputInterface @@ -3169,7 +2986,6 @@ index 3a06311a8b..8204b8a744 100644 + abstract protected function doWrite(string $message, bool $newline): void; } diff --git a/src/Symfony/Component/Console/Output/OutputInterface.php b/src/Symfony/Component/Console/Output/OutputInterface.php -index fb1557720f..8b31dee20c 100644 --- a/src/Symfony/Component/Console/Output/OutputInterface.php +++ b/src/Symfony/Component/Console/Output/OutputInterface.php @@ -40,5 +40,5 @@ interface OutputInterface @@ -3208,7 +3024,6 @@ index fb1557720f..8b31dee20c 100644 /** diff --git a/src/Symfony/Component/Console/Output/StreamOutput.php b/src/Symfony/Component/Console/Output/StreamOutput.php -index 155066ea0e..85e07025bc 100644 --- a/src/Symfony/Component/Console/Output/StreamOutput.php +++ b/src/Symfony/Component/Console/Output/StreamOutput.php @@ -66,5 +66,5 @@ class StreamOutput extends Output @@ -3219,7 +3034,6 @@ index 155066ea0e..85e07025bc 100644 { if ($newline) { diff --git a/src/Symfony/Component/Console/Output/TrimmedBufferOutput.php b/src/Symfony/Component/Console/Output/TrimmedBufferOutput.php -index b00445ece8..5e9b1086b0 100644 --- a/src/Symfony/Component/Console/Output/TrimmedBufferOutput.php +++ b/src/Symfony/Component/Console/Output/TrimmedBufferOutput.php @@ -49,5 +49,5 @@ class TrimmedBufferOutput extends Output @@ -3230,7 +3044,6 @@ index b00445ece8..5e9b1086b0 100644 { $this->buffer .= $message; diff --git a/src/Symfony/Component/Console/Question/Question.php b/src/Symfony/Component/Console/Question/Question.php -index 26896bb531..af97d04ddc 100644 --- a/src/Symfony/Component/Console/Question/Question.php +++ b/src/Symfony/Component/Console/Question/Question.php @@ -270,5 +270,5 @@ class Question @@ -3241,7 +3054,6 @@ index 26896bb531..af97d04ddc 100644 { return (bool) \count(array_filter(array_keys($array), 'is_string')); diff --git a/src/Symfony/Component/Console/Style/OutputStyle.php b/src/Symfony/Component/Console/Style/OutputStyle.php -index ddfa8decc2..e67453d9fe 100644 --- a/src/Symfony/Component/Console/Style/OutputStyle.php +++ b/src/Symfony/Component/Console/Style/OutputStyle.php @@ -34,5 +34,5 @@ abstract class OutputStyle implements OutputInterface, StyleInterface @@ -3294,7 +3106,6 @@ index ddfa8decc2..e67453d9fe 100644 { if (!$this->output instanceof ConsoleOutputInterface) { diff --git a/src/Symfony/Component/Console/Style/StyleInterface.php b/src/Symfony/Component/Console/Style/StyleInterface.php -index e25a65bd24..1d4bb7fe71 100644 --- a/src/Symfony/Component/Console/Style/StyleInterface.php +++ b/src/Symfony/Component/Console/Style/StyleInterface.php @@ -24,5 +24,5 @@ interface StyleInterface @@ -3395,7 +3206,6 @@ index e25a65bd24..1d4bb7fe71 100644 + public function progressFinish(): void; } diff --git a/src/Symfony/Component/Console/Style/SymfonyStyle.php b/src/Symfony/Component/Console/Style/SymfonyStyle.php -index cecce6c01b..f2e0c7fdf5 100644 --- a/src/Symfony/Component/Console/Style/SymfonyStyle.php +++ b/src/Symfony/Component/Console/Style/SymfonyStyle.php @@ -64,5 +64,5 @@ class SymfonyStyle extends OutputStyle @@ -3545,30 +3355,7 @@ index cecce6c01b..f2e0c7fdf5 100644 + public function newLine(int $count = 1): void { parent::newLine($count); -diff --git a/src/Symfony/Component/Console/Tests/EventListener/ErrorListenerTest.php b/src/Symfony/Component/Console/Tests/EventListener/ErrorListenerTest.php -index 6ad89dc522..40020baee7 100644 ---- a/src/Symfony/Component/Console/Tests/EventListener/ErrorListenerTest.php -+++ b/src/Symfony/Component/Console/Tests/EventListener/ErrorListenerTest.php -@@ -141,5 +141,5 @@ class NonStringInput extends Input - } - -- public function parse() -+ public function parse(): void - { - } -diff --git a/src/Symfony/Component/Console/Tests/Output/OutputTest.php b/src/Symfony/Component/Console/Tests/Output/OutputTest.php -index f337c4ddd5..b7c0a98d9f 100644 ---- a/src/Symfony/Component/Console/Tests/Output/OutputTest.php -+++ b/src/Symfony/Component/Console/Tests/Output/OutputTest.php -@@ -183,5 +183,5 @@ class TestOutput extends Output - } - -- protected function doWrite(string $message, bool $newline) -+ protected function doWrite(string $message, bool $newline): void - { - $this->output .= $message.($newline ? "\n" : ''); diff --git a/src/Symfony/Component/CssSelector/Parser/Reader.php b/src/Symfony/Component/CssSelector/Parser/Reader.php -index 7f6ae7a600..d79db02567 100644 --- a/src/Symfony/Component/CssSelector/Parser/Reader.php +++ b/src/Symfony/Component/CssSelector/Parser/Reader.php @@ -57,5 +57,5 @@ class Reader @@ -3579,7 +3366,6 @@ index 7f6ae7a600..d79db02567 100644 { $position = strpos($this->source, $string, $this->position); diff --git a/src/Symfony/Component/DependencyInjection/Argument/ArgumentInterface.php b/src/Symfony/Component/DependencyInjection/Argument/ArgumentInterface.php -index 3b39f36625..de2d7f2536 100644 --- a/src/Symfony/Component/DependencyInjection/Argument/ArgumentInterface.php +++ b/src/Symfony/Component/DependencyInjection/Argument/ArgumentInterface.php @@ -24,4 +24,4 @@ interface ArgumentInterface @@ -3589,7 +3375,6 @@ index 3b39f36625..de2d7f2536 100644 + public function setValues(array $values): void; } diff --git a/src/Symfony/Component/DependencyInjection/Argument/IteratorArgument.php b/src/Symfony/Component/DependencyInjection/Argument/IteratorArgument.php -index aedd1e659e..92aff35b84 100644 --- a/src/Symfony/Component/DependencyInjection/Argument/IteratorArgument.php +++ b/src/Symfony/Component/DependencyInjection/Argument/IteratorArgument.php @@ -34,5 +34,5 @@ class IteratorArgument implements ArgumentInterface @@ -3600,7 +3385,6 @@ index aedd1e659e..92aff35b84 100644 { $this->values = $values; diff --git a/src/Symfony/Component/DependencyInjection/Argument/ServiceClosureArgument.php b/src/Symfony/Component/DependencyInjection/Argument/ServiceClosureArgument.php -index be86412bcb..28f53536bc 100644 --- a/src/Symfony/Component/DependencyInjection/Argument/ServiceClosureArgument.php +++ b/src/Symfony/Component/DependencyInjection/Argument/ServiceClosureArgument.php @@ -36,5 +36,5 @@ class ServiceClosureArgument implements ArgumentInterface @@ -3611,7 +3395,6 @@ index be86412bcb..28f53536bc 100644 { if ([0] !== array_keys($values)) { diff --git a/src/Symfony/Component/DependencyInjection/Argument/ServiceLocatorArgument.php b/src/Symfony/Component/DependencyInjection/Argument/ServiceLocatorArgument.php -index de533fcca6..ed25852022 100644 --- a/src/Symfony/Component/DependencyInjection/Argument/ServiceLocatorArgument.php +++ b/src/Symfony/Component/DependencyInjection/Argument/ServiceLocatorArgument.php @@ -45,5 +45,5 @@ class ServiceLocatorArgument implements ArgumentInterface @@ -3622,7 +3405,6 @@ index de533fcca6..ed25852022 100644 { $this->values = $values; diff --git a/src/Symfony/Component/DependencyInjection/Argument/TaggedIteratorArgument.php b/src/Symfony/Component/DependencyInjection/Argument/TaggedIteratorArgument.php -index b4e982c457..521a9531f8 100644 --- a/src/Symfony/Component/DependencyInjection/Argument/TaggedIteratorArgument.php +++ b/src/Symfony/Component/DependencyInjection/Argument/TaggedIteratorArgument.php @@ -56,5 +56,5 @@ class TaggedIteratorArgument extends IteratorArgument @@ -3633,7 +3415,6 @@ index b4e982c457..521a9531f8 100644 { return $this->tag; diff --git a/src/Symfony/Component/DependencyInjection/Compiler/AbstractRecursivePass.php b/src/Symfony/Component/DependencyInjection/Compiler/AbstractRecursivePass.php -index 95251dec82..74c2b38eb8 100644 --- a/src/Symfony/Component/DependencyInjection/Compiler/AbstractRecursivePass.php +++ b/src/Symfony/Component/DependencyInjection/Compiler/AbstractRecursivePass.php @@ -40,5 +40,5 @@ abstract class AbstractRecursivePass implements CompilerPassInterface @@ -3658,7 +3439,6 @@ index 95251dec82..74c2b38eb8 100644 { if (\is_array($value)) { diff --git a/src/Symfony/Component/DependencyInjection/Compiler/AnalyzeServiceReferencesPass.php b/src/Symfony/Component/DependencyInjection/Compiler/AnalyzeServiceReferencesPass.php -index de033d9847..e515b6344c 100644 --- a/src/Symfony/Component/DependencyInjection/Compiler/AnalyzeServiceReferencesPass.php +++ b/src/Symfony/Component/DependencyInjection/Compiler/AnalyzeServiceReferencesPass.php @@ -58,5 +58,5 @@ class AnalyzeServiceReferencesPass extends AbstractRecursivePass @@ -3669,7 +3449,6 @@ index de033d9847..e515b6344c 100644 { $this->container = $container; diff --git a/src/Symfony/Component/DependencyInjection/Compiler/AutoAliasServicePass.php b/src/Symfony/Component/DependencyInjection/Compiler/AutoAliasServicePass.php -index 3f070dcc0c..aa0e5186bf 100644 --- a/src/Symfony/Component/DependencyInjection/Compiler/AutoAliasServicePass.php +++ b/src/Symfony/Component/DependencyInjection/Compiler/AutoAliasServicePass.php @@ -24,5 +24,5 @@ class AutoAliasServicePass implements CompilerPassInterface @@ -3680,7 +3459,6 @@ index 3f070dcc0c..aa0e5186bf 100644 { foreach ($container->findTaggedServiceIds('auto_alias') as $serviceId => $tags) { diff --git a/src/Symfony/Component/DependencyInjection/Compiler/AutowirePass.php b/src/Symfony/Component/DependencyInjection/Compiler/AutowirePass.php -index f84a7faff0..fb0bb08933 100644 --- a/src/Symfony/Component/DependencyInjection/Compiler/AutowirePass.php +++ b/src/Symfony/Component/DependencyInjection/Compiler/AutowirePass.php @@ -71,5 +71,5 @@ class AutowirePass extends AbstractRecursivePass @@ -3691,7 +3469,6 @@ index f84a7faff0..fb0bb08933 100644 { $this->defaultArgument->bag = $container->getParameterBag(); diff --git a/src/Symfony/Component/DependencyInjection/Compiler/CheckCircularReferencesPass.php b/src/Symfony/Component/DependencyInjection/Compiler/CheckCircularReferencesPass.php -index 1fb8935c3e..1cfccaa671 100644 --- a/src/Symfony/Component/DependencyInjection/Compiler/CheckCircularReferencesPass.php +++ b/src/Symfony/Component/DependencyInjection/Compiler/CheckCircularReferencesPass.php @@ -35,5 +35,5 @@ class CheckCircularReferencesPass implements CompilerPassInterface @@ -3702,7 +3479,6 @@ index 1fb8935c3e..1cfccaa671 100644 { $graph = $container->getCompiler()->getServiceReferenceGraph(); diff --git a/src/Symfony/Component/DependencyInjection/Compiler/CheckDefinitionValidityPass.php b/src/Symfony/Component/DependencyInjection/Compiler/CheckDefinitionValidityPass.php -index c62345f26e..098772e2ef 100644 --- a/src/Symfony/Component/DependencyInjection/Compiler/CheckDefinitionValidityPass.php +++ b/src/Symfony/Component/DependencyInjection/Compiler/CheckDefinitionValidityPass.php @@ -38,5 +38,5 @@ class CheckDefinitionValidityPass implements CompilerPassInterface @@ -3713,7 +3489,6 @@ index c62345f26e..098772e2ef 100644 { foreach ($container->getDefinitions() as $id => $definition) { diff --git a/src/Symfony/Component/DependencyInjection/Compiler/CheckExceptionOnInvalidReferenceBehaviorPass.php b/src/Symfony/Component/DependencyInjection/Compiler/CheckExceptionOnInvalidReferenceBehaviorPass.php -index 8f828d3221..fb41bd49a3 100644 --- a/src/Symfony/Component/DependencyInjection/Compiler/CheckExceptionOnInvalidReferenceBehaviorPass.php +++ b/src/Symfony/Component/DependencyInjection/Compiler/CheckExceptionOnInvalidReferenceBehaviorPass.php @@ -29,5 +29,5 @@ class CheckExceptionOnInvalidReferenceBehaviorPass extends AbstractRecursivePass @@ -3724,7 +3499,6 @@ index 8f828d3221..fb41bd49a3 100644 { $this->serviceLocatorContextIds = []; diff --git a/src/Symfony/Component/DependencyInjection/Compiler/Compiler.php b/src/Symfony/Component/DependencyInjection/Compiler/Compiler.php -index c8cbccb4b9..0446970598 100644 --- a/src/Symfony/Component/DependencyInjection/Compiler/Compiler.php +++ b/src/Symfony/Component/DependencyInjection/Compiler/Compiler.php @@ -45,5 +45,5 @@ class Compiler @@ -3749,7 +3523,6 @@ index c8cbccb4b9..0446970598 100644 { try { diff --git a/src/Symfony/Component/DependencyInjection/Compiler/CompilerPassInterface.php b/src/Symfony/Component/DependencyInjection/Compiler/CompilerPassInterface.php -index 2ad4a048ba..719267be1e 100644 --- a/src/Symfony/Component/DependencyInjection/Compiler/CompilerPassInterface.php +++ b/src/Symfony/Component/DependencyInjection/Compiler/CompilerPassInterface.php @@ -26,4 +26,4 @@ interface CompilerPassInterface @@ -3759,7 +3532,6 @@ index 2ad4a048ba..719267be1e 100644 + public function process(ContainerBuilder $container): void; } diff --git a/src/Symfony/Component/DependencyInjection/Compiler/DecoratorServicePass.php b/src/Symfony/Component/DependencyInjection/Compiler/DecoratorServicePass.php -index d05878fe85..dc75d9ef10 100644 --- a/src/Symfony/Component/DependencyInjection/Compiler/DecoratorServicePass.php +++ b/src/Symfony/Component/DependencyInjection/Compiler/DecoratorServicePass.php @@ -31,5 +31,5 @@ class DecoratorServicePass extends AbstractRecursivePass @@ -3770,10 +3542,9 @@ index d05878fe85..dc75d9ef10 100644 { $definitions = new \SplPriorityQueue(); diff --git a/src/Symfony/Component/DependencyInjection/Compiler/DefinitionErrorExceptionPass.php b/src/Symfony/Component/DependencyInjection/Compiler/DefinitionErrorExceptionPass.php -index b6ee648160..5682941b11 100644 --- a/src/Symfony/Component/DependencyInjection/Compiler/DefinitionErrorExceptionPass.php +++ b/src/Symfony/Component/DependencyInjection/Compiler/DefinitionErrorExceptionPass.php -@@ -33,5 +33,5 @@ class DefinitionErrorExceptionPass extends AbstractRecursivePass +@@ -32,5 +32,5 @@ class DefinitionErrorExceptionPass extends AbstractRecursivePass * @return void */ - public function process(ContainerBuilder $container) @@ -3781,7 +3552,6 @@ index b6ee648160..5682941b11 100644 { try { diff --git a/src/Symfony/Component/DependencyInjection/Compiler/ExtensionCompilerPass.php b/src/Symfony/Component/DependencyInjection/Compiler/ExtensionCompilerPass.php -index 953b7f942e..96912701e5 100644 --- a/src/Symfony/Component/DependencyInjection/Compiler/ExtensionCompilerPass.php +++ b/src/Symfony/Component/DependencyInjection/Compiler/ExtensionCompilerPass.php @@ -25,5 +25,5 @@ class ExtensionCompilerPass implements CompilerPassInterface @@ -3792,7 +3562,6 @@ index 953b7f942e..96912701e5 100644 { foreach ($container->getExtensions() as $extension) { diff --git a/src/Symfony/Component/DependencyInjection/Compiler/InlineServiceDefinitionsPass.php b/src/Symfony/Component/DependencyInjection/Compiler/InlineServiceDefinitionsPass.php -index f4eb931412..0e5448aa91 100644 --- a/src/Symfony/Component/DependencyInjection/Compiler/InlineServiceDefinitionsPass.php +++ b/src/Symfony/Component/DependencyInjection/Compiler/InlineServiceDefinitionsPass.php @@ -41,5 +41,5 @@ class InlineServiceDefinitionsPass extends AbstractRecursivePass @@ -3803,7 +3572,6 @@ index f4eb931412..0e5448aa91 100644 { $this->container = $container; diff --git a/src/Symfony/Component/DependencyInjection/Compiler/MergeExtensionConfigurationPass.php b/src/Symfony/Component/DependencyInjection/Compiler/MergeExtensionConfigurationPass.php -index cd8ebfe0f7..36cd2b93a4 100644 --- a/src/Symfony/Component/DependencyInjection/Compiler/MergeExtensionConfigurationPass.php +++ b/src/Symfony/Component/DependencyInjection/Compiler/MergeExtensionConfigurationPass.php @@ -33,5 +33,5 @@ class MergeExtensionConfigurationPass implements CompilerPassInterface @@ -3827,7 +3595,6 @@ index cd8ebfe0f7..36cd2b93a4 100644 { throw new LogicException(sprintf('Cannot compile the container in extension "%s".', $this->extensionClass)); diff --git a/src/Symfony/Component/DependencyInjection/Compiler/PassConfig.php b/src/Symfony/Component/DependencyInjection/Compiler/PassConfig.php -index 16b24cc710..c8296e7c1d 100644 --- a/src/Symfony/Component/DependencyInjection/Compiler/PassConfig.php +++ b/src/Symfony/Component/DependencyInjection/Compiler/PassConfig.php @@ -126,5 +126,5 @@ class PassConfig @@ -3880,7 +3647,6 @@ index 16b24cc710..c8296e7c1d 100644 { $this->removingPasses = [$passes]; diff --git a/src/Symfony/Component/DependencyInjection/Compiler/RegisterEnvVarProcessorsPass.php b/src/Symfony/Component/DependencyInjection/Compiler/RegisterEnvVarProcessorsPass.php -index 2a706bfe5e..68f25a4ff8 100644 --- a/src/Symfony/Component/DependencyInjection/Compiler/RegisterEnvVarProcessorsPass.php +++ b/src/Symfony/Component/DependencyInjection/Compiler/RegisterEnvVarProcessorsPass.php @@ -31,5 +31,5 @@ class RegisterEnvVarProcessorsPass implements CompilerPassInterface @@ -3891,7 +3657,6 @@ index 2a706bfe5e..68f25a4ff8 100644 { $bag = $container->getParameterBag(); diff --git a/src/Symfony/Component/DependencyInjection/Compiler/RegisterReverseContainerPass.php b/src/Symfony/Component/DependencyInjection/Compiler/RegisterReverseContainerPass.php -index aa4cca3571..4365ecffde 100644 --- a/src/Symfony/Component/DependencyInjection/Compiler/RegisterReverseContainerPass.php +++ b/src/Symfony/Component/DependencyInjection/Compiler/RegisterReverseContainerPass.php @@ -33,5 +33,5 @@ class RegisterReverseContainerPass implements CompilerPassInterface @@ -3902,7 +3667,6 @@ index aa4cca3571..4365ecffde 100644 { if (!$container->hasDefinition('reverse_container')) { diff --git a/src/Symfony/Component/DependencyInjection/Compiler/RemoveAbstractDefinitionsPass.php b/src/Symfony/Component/DependencyInjection/Compiler/RemoveAbstractDefinitionsPass.php -index d0ebfcc509..9b50d622aa 100644 --- a/src/Symfony/Component/DependencyInjection/Compiler/RemoveAbstractDefinitionsPass.php +++ b/src/Symfony/Component/DependencyInjection/Compiler/RemoveAbstractDefinitionsPass.php @@ -24,5 +24,5 @@ class RemoveAbstractDefinitionsPass implements CompilerPassInterface @@ -3913,7 +3677,6 @@ index d0ebfcc509..9b50d622aa 100644 { foreach ($container->getDefinitions() as $id => $definition) { diff --git a/src/Symfony/Component/DependencyInjection/Compiler/RemoveBuildParametersPass.php b/src/Symfony/Component/DependencyInjection/Compiler/RemoveBuildParametersPass.php -index 75e714475c..e5bb34a465 100644 --- a/src/Symfony/Component/DependencyInjection/Compiler/RemoveBuildParametersPass.php +++ b/src/Symfony/Component/DependencyInjection/Compiler/RemoveBuildParametersPass.php @@ -24,5 +24,5 @@ class RemoveBuildParametersPass implements CompilerPassInterface @@ -3924,7 +3687,6 @@ index 75e714475c..e5bb34a465 100644 { $parameterBag = $container->getParameterBag(); diff --git a/src/Symfony/Component/DependencyInjection/Compiler/RemovePrivateAliasesPass.php b/src/Symfony/Component/DependencyInjection/Compiler/RemovePrivateAliasesPass.php -index 93c3fd2672..250a640d63 100644 --- a/src/Symfony/Component/DependencyInjection/Compiler/RemovePrivateAliasesPass.php +++ b/src/Symfony/Component/DependencyInjection/Compiler/RemovePrivateAliasesPass.php @@ -28,5 +28,5 @@ class RemovePrivateAliasesPass implements CompilerPassInterface @@ -3935,7 +3697,6 @@ index 93c3fd2672..250a640d63 100644 { foreach ($container->getAliases() as $id => $alias) { diff --git a/src/Symfony/Component/DependencyInjection/Compiler/RemoveUnusedDefinitionsPass.php b/src/Symfony/Component/DependencyInjection/Compiler/RemoveUnusedDefinitionsPass.php -index df97a62f7e..60126d8d06 100644 --- a/src/Symfony/Component/DependencyInjection/Compiler/RemoveUnusedDefinitionsPass.php +++ b/src/Symfony/Component/DependencyInjection/Compiler/RemoveUnusedDefinitionsPass.php @@ -30,5 +30,5 @@ class RemoveUnusedDefinitionsPass extends AbstractRecursivePass @@ -3946,7 +3707,6 @@ index df97a62f7e..60126d8d06 100644 { try { diff --git a/src/Symfony/Component/DependencyInjection/Compiler/ReplaceAliasByActualDefinitionPass.php b/src/Symfony/Component/DependencyInjection/Compiler/ReplaceAliasByActualDefinitionPass.php -index 808cde2081..83063d607d 100644 --- a/src/Symfony/Component/DependencyInjection/Compiler/ReplaceAliasByActualDefinitionPass.php +++ b/src/Symfony/Component/DependencyInjection/Compiler/ReplaceAliasByActualDefinitionPass.php @@ -34,5 +34,5 @@ class ReplaceAliasByActualDefinitionPass extends AbstractRecursivePass @@ -3957,7 +3717,6 @@ index 808cde2081..83063d607d 100644 { // First collect all alias targets that need to be replaced diff --git a/src/Symfony/Component/DependencyInjection/Compiler/ResolveBindingsPass.php b/src/Symfony/Component/DependencyInjection/Compiler/ResolveBindingsPass.php -index 55a358efdf..be943ae655 100644 --- a/src/Symfony/Component/DependencyInjection/Compiler/ResolveBindingsPass.php +++ b/src/Symfony/Component/DependencyInjection/Compiler/ResolveBindingsPass.php @@ -36,5 +36,5 @@ class ResolveBindingsPass extends AbstractRecursivePass @@ -3968,7 +3727,6 @@ index 55a358efdf..be943ae655 100644 { $this->usedBindings = $container->getRemovedBindingIds(); diff --git a/src/Symfony/Component/DependencyInjection/Compiler/ResolveClassPass.php b/src/Symfony/Component/DependencyInjection/Compiler/ResolveClassPass.php -index 468837672e..bdfa98bfa6 100644 --- a/src/Symfony/Component/DependencyInjection/Compiler/ResolveClassPass.php +++ b/src/Symfony/Component/DependencyInjection/Compiler/ResolveClassPass.php @@ -24,5 +24,5 @@ class ResolveClassPass implements CompilerPassInterface @@ -3979,7 +3737,6 @@ index 468837672e..bdfa98bfa6 100644 { foreach ($container->getDefinitions() as $id => $definition) { diff --git a/src/Symfony/Component/DependencyInjection/Compiler/ResolveDecoratorStackPass.php b/src/Symfony/Component/DependencyInjection/Compiler/ResolveDecoratorStackPass.php -index da02622b21..395c5a1de6 100644 --- a/src/Symfony/Component/DependencyInjection/Compiler/ResolveDecoratorStackPass.php +++ b/src/Symfony/Component/DependencyInjection/Compiler/ResolveDecoratorStackPass.php @@ -28,5 +28,5 @@ class ResolveDecoratorStackPass implements CompilerPassInterface @@ -3990,7 +3747,6 @@ index da02622b21..395c5a1de6 100644 { $stacks = []; diff --git a/src/Symfony/Component/DependencyInjection/Compiler/ResolveHotPathPass.php b/src/Symfony/Component/DependencyInjection/Compiler/ResolveHotPathPass.php -index bffb9dab85..40e484f5a5 100644 --- a/src/Symfony/Component/DependencyInjection/Compiler/ResolveHotPathPass.php +++ b/src/Symfony/Component/DependencyInjection/Compiler/ResolveHotPathPass.php @@ -29,5 +29,5 @@ class ResolveHotPathPass extends AbstractRecursivePass @@ -4001,7 +3757,6 @@ index bffb9dab85..40e484f5a5 100644 { try { diff --git a/src/Symfony/Component/DependencyInjection/Compiler/ResolveInstanceofConditionalsPass.php b/src/Symfony/Component/DependencyInjection/Compiler/ResolveInstanceofConditionalsPass.php -index 88d6fa01fd..d057c13802 100644 --- a/src/Symfony/Component/DependencyInjection/Compiler/ResolveInstanceofConditionalsPass.php +++ b/src/Symfony/Component/DependencyInjection/Compiler/ResolveInstanceofConditionalsPass.php @@ -28,5 +28,5 @@ class ResolveInstanceofConditionalsPass implements CompilerPassInterface @@ -4012,7 +3767,6 @@ index 88d6fa01fd..d057c13802 100644 { foreach ($container->getAutoconfiguredInstanceof() as $interface => $definition) { diff --git a/src/Symfony/Component/DependencyInjection/Compiler/ResolveInvalidReferencesPass.php b/src/Symfony/Component/DependencyInjection/Compiler/ResolveInvalidReferencesPass.php -index 7a2a69aa6a..7a265cc8aa 100644 --- a/src/Symfony/Component/DependencyInjection/Compiler/ResolveInvalidReferencesPass.php +++ b/src/Symfony/Component/DependencyInjection/Compiler/ResolveInvalidReferencesPass.php @@ -39,5 +39,5 @@ class ResolveInvalidReferencesPass implements CompilerPassInterface @@ -4023,7 +3777,6 @@ index 7a2a69aa6a..7a265cc8aa 100644 { $this->container = $container; diff --git a/src/Symfony/Component/DependencyInjection/Compiler/ResolveNoPreloadPass.php b/src/Symfony/Component/DependencyInjection/Compiler/ResolveNoPreloadPass.php -index 3302dd2cd2..459c22434b 100644 --- a/src/Symfony/Component/DependencyInjection/Compiler/ResolveNoPreloadPass.php +++ b/src/Symfony/Component/DependencyInjection/Compiler/ResolveNoPreloadPass.php @@ -30,5 +30,5 @@ class ResolveNoPreloadPass extends AbstractRecursivePass @@ -4034,7 +3787,6 @@ index 3302dd2cd2..459c22434b 100644 { $this->container = $container; diff --git a/src/Symfony/Component/DependencyInjection/Compiler/ResolveParameterPlaceHoldersPass.php b/src/Symfony/Component/DependencyInjection/Compiler/ResolveParameterPlaceHoldersPass.php -index c4a1412ff2..2bb03c253e 100644 --- a/src/Symfony/Component/DependencyInjection/Compiler/ResolveParameterPlaceHoldersPass.php +++ b/src/Symfony/Component/DependencyInjection/Compiler/ResolveParameterPlaceHoldersPass.php @@ -37,5 +37,5 @@ class ResolveParameterPlaceHoldersPass extends AbstractRecursivePass @@ -4045,7 +3797,6 @@ index c4a1412ff2..2bb03c253e 100644 { $this->bag = $container->getParameterBag(); diff --git a/src/Symfony/Component/DependencyInjection/Compiler/ResolveReferencesToAliasesPass.php b/src/Symfony/Component/DependencyInjection/Compiler/ResolveReferencesToAliasesPass.php -index 3176d405f8..0bbc25ba9e 100644 --- a/src/Symfony/Component/DependencyInjection/Compiler/ResolveReferencesToAliasesPass.php +++ b/src/Symfony/Component/DependencyInjection/Compiler/ResolveReferencesToAliasesPass.php @@ -26,5 +26,5 @@ class ResolveReferencesToAliasesPass extends AbstractRecursivePass @@ -4056,7 +3807,6 @@ index 3176d405f8..0bbc25ba9e 100644 { parent::process($container); diff --git a/src/Symfony/Component/DependencyInjection/Compiler/ServiceReferenceGraphNode.php b/src/Symfony/Component/DependencyInjection/Compiler/ServiceReferenceGraphNode.php -index e7f42f87db..8c995103ad 100644 --- a/src/Symfony/Component/DependencyInjection/Compiler/ServiceReferenceGraphNode.php +++ b/src/Symfony/Component/DependencyInjection/Compiler/ServiceReferenceGraphNode.php @@ -38,5 +38,5 @@ class ServiceReferenceGraphNode @@ -4081,7 +3831,6 @@ index e7f42f87db..8c995103ad 100644 { $this->inEdges = $this->outEdges = []; diff --git a/src/Symfony/Component/DependencyInjection/Compiler/ValidateEnvPlaceholdersPass.php b/src/Symfony/Component/DependencyInjection/Compiler/ValidateEnvPlaceholdersPass.php -index 2d6542660b..20287f9286 100644 --- a/src/Symfony/Component/DependencyInjection/Compiler/ValidateEnvPlaceholdersPass.php +++ b/src/Symfony/Component/DependencyInjection/Compiler/ValidateEnvPlaceholdersPass.php @@ -34,5 +34,5 @@ class ValidateEnvPlaceholdersPass implements CompilerPassInterface @@ -4092,7 +3841,6 @@ index 2d6542660b..20287f9286 100644 { $this->extensionConfig = []; diff --git a/src/Symfony/Component/DependencyInjection/Container.php b/src/Symfony/Component/DependencyInjection/Container.php -index 3ea2228b94..f1d7078383 100644 --- a/src/Symfony/Component/DependencyInjection/Container.php +++ b/src/Symfony/Component/DependencyInjection/Container.php @@ -83,5 +83,5 @@ class Container implements ContainerInterface, ResetInterface @@ -4138,7 +3886,6 @@ index 3ea2228b94..f1d7078383 100644 { return require $file; diff --git a/src/Symfony/Component/DependencyInjection/ContainerAwareInterface.php b/src/Symfony/Component/DependencyInjection/ContainerAwareInterface.php -index 084a321ab5..09fb37f3aa 100644 --- a/src/Symfony/Component/DependencyInjection/ContainerAwareInterface.php +++ b/src/Symfony/Component/DependencyInjection/ContainerAwareInterface.php @@ -24,4 +24,4 @@ interface ContainerAwareInterface @@ -4148,7 +3895,6 @@ index 084a321ab5..09fb37f3aa 100644 + public function setContainer(?ContainerInterface $container): void; } diff --git a/src/Symfony/Component/DependencyInjection/ContainerAwareTrait.php b/src/Symfony/Component/DependencyInjection/ContainerAwareTrait.php -index ac67b468c5..bc1e395810 100644 --- a/src/Symfony/Component/DependencyInjection/ContainerAwareTrait.php +++ b/src/Symfony/Component/DependencyInjection/ContainerAwareTrait.php @@ -27,5 +27,5 @@ trait ContainerAwareTrait @@ -4159,7 +3905,6 @@ index ac67b468c5..bc1e395810 100644 { if (1 > \func_num_args()) { diff --git a/src/Symfony/Component/DependencyInjection/ContainerBuilder.php b/src/Symfony/Component/DependencyInjection/ContainerBuilder.php -index a7a9c145aa..bd16e937ca 100644 --- a/src/Symfony/Component/DependencyInjection/ContainerBuilder.php +++ b/src/Symfony/Component/DependencyInjection/ContainerBuilder.php @@ -177,5 +177,5 @@ class ContainerBuilder extends Container implements TaggedContainerInterface @@ -4261,7 +4006,6 @@ index a7a9c145aa..bd16e937ca 100644 { $this->expressionLanguageProviders[] = $provider; diff --git a/src/Symfony/Component/DependencyInjection/ContainerInterface.php b/src/Symfony/Component/DependencyInjection/ContainerInterface.php -index f70a8a9a66..1bf83ae21f 100644 --- a/src/Symfony/Component/DependencyInjection/ContainerInterface.php +++ b/src/Symfony/Component/DependencyInjection/ContainerInterface.php @@ -34,5 +34,5 @@ interface ContainerInterface extends PsrContainerInterface @@ -4285,7 +4029,6 @@ index f70a8a9a66..1bf83ae21f 100644 + public function setParameter(string $name, array|bool|string|int|float|\UnitEnum|null $value): void; } diff --git a/src/Symfony/Component/DependencyInjection/Exception/AutowiringFailedException.php b/src/Symfony/Component/DependencyInjection/Exception/AutowiringFailedException.php -index 5f22fa53b6..2ebf0e385d 100644 --- a/src/Symfony/Component/DependencyInjection/Exception/AutowiringFailedException.php +++ b/src/Symfony/Component/DependencyInjection/Exception/AutowiringFailedException.php @@ -71,5 +71,5 @@ class AutowiringFailedException extends RuntimeException @@ -4296,7 +4039,6 @@ index 5f22fa53b6..2ebf0e385d 100644 { return $this->serviceId; diff --git a/src/Symfony/Component/DependencyInjection/Exception/ParameterCircularReferenceException.php b/src/Symfony/Component/DependencyInjection/Exception/ParameterCircularReferenceException.php -index 9fc3b50b62..a6c1469c2d 100644 --- a/src/Symfony/Component/DependencyInjection/Exception/ParameterCircularReferenceException.php +++ b/src/Symfony/Component/DependencyInjection/Exception/ParameterCircularReferenceException.php @@ -31,5 +31,5 @@ class ParameterCircularReferenceException extends RuntimeException @@ -4307,7 +4049,6 @@ index 9fc3b50b62..a6c1469c2d 100644 { return $this->parameters; diff --git a/src/Symfony/Component/DependencyInjection/Exception/ParameterNotFoundException.php b/src/Symfony/Component/DependencyInjection/Exception/ParameterNotFoundException.php -index 69f7b3a50c..654537df61 100644 --- a/src/Symfony/Component/DependencyInjection/Exception/ParameterNotFoundException.php +++ b/src/Symfony/Component/DependencyInjection/Exception/ParameterNotFoundException.php @@ -51,5 +51,5 @@ class ParameterNotFoundException extends InvalidArgumentException implements Not @@ -4353,7 +4094,6 @@ index 69f7b3a50c..654537df61 100644 { $this->sourceKey = $sourceKey; diff --git a/src/Symfony/Component/DependencyInjection/Exception/ServiceCircularReferenceException.php b/src/Symfony/Component/DependencyInjection/Exception/ServiceCircularReferenceException.php -index d62c22567b..085d5fa167 100644 --- a/src/Symfony/Component/DependencyInjection/Exception/ServiceCircularReferenceException.php +++ b/src/Symfony/Component/DependencyInjection/Exception/ServiceCircularReferenceException.php @@ -33,5 +33,5 @@ class ServiceCircularReferenceException extends RuntimeException @@ -4371,7 +4111,6 @@ index d62c22567b..085d5fa167 100644 { return $this->path; diff --git a/src/Symfony/Component/DependencyInjection/Exception/ServiceNotFoundException.php b/src/Symfony/Component/DependencyInjection/Exception/ServiceNotFoundException.php -index d56db7727f..90da421299 100644 --- a/src/Symfony/Component/DependencyInjection/Exception/ServiceNotFoundException.php +++ b/src/Symfony/Component/DependencyInjection/Exception/ServiceNotFoundException.php @@ -54,5 +54,5 @@ class ServiceNotFoundException extends InvalidArgumentException implements NotFo @@ -4396,7 +4135,6 @@ index d56db7727f..90da421299 100644 { return $this->alternatives; diff --git a/src/Symfony/Component/DependencyInjection/Extension/ConfigurationExtensionInterface.php b/src/Symfony/Component/DependencyInjection/Extension/ConfigurationExtensionInterface.php -index a42967f4da..4e86e16f9d 100644 --- a/src/Symfony/Component/DependencyInjection/Extension/ConfigurationExtensionInterface.php +++ b/src/Symfony/Component/DependencyInjection/Extension/ConfigurationExtensionInterface.php @@ -27,4 +27,4 @@ interface ConfigurationExtensionInterface @@ -4406,7 +4144,6 @@ index a42967f4da..4e86e16f9d 100644 + public function getConfiguration(array $config, ContainerBuilder $container): ?ConfigurationInterface; } diff --git a/src/Symfony/Component/DependencyInjection/Extension/Extension.php b/src/Symfony/Component/DependencyInjection/Extension/Extension.php -index d0bd05ea4b..f9df65fd7c 100644 --- a/src/Symfony/Component/DependencyInjection/Extension/Extension.php +++ b/src/Symfony/Component/DependencyInjection/Extension/Extension.php @@ -32,5 +32,5 @@ abstract class Extension implements ExtensionInterface, ConfigurationExtensionIn @@ -4431,7 +4168,6 @@ index d0bd05ea4b..f9df65fd7c 100644 { $class = static::class; diff --git a/src/Symfony/Component/DependencyInjection/Extension/ExtensionInterface.php b/src/Symfony/Component/DependencyInjection/Extension/ExtensionInterface.php -index bd57eef733..3284e19ede 100644 --- a/src/Symfony/Component/DependencyInjection/Extension/ExtensionInterface.php +++ b/src/Symfony/Component/DependencyInjection/Extension/ExtensionInterface.php @@ -30,5 +30,5 @@ interface ExtensionInterface @@ -4462,7 +4198,6 @@ index bd57eef733..3284e19ede 100644 + public function getAlias(): string; } diff --git a/src/Symfony/Component/DependencyInjection/Extension/PrependExtensionInterface.php b/src/Symfony/Component/DependencyInjection/Extension/PrependExtensionInterface.php -index 0df94e1092..061e7d7fd9 100644 --- a/src/Symfony/Component/DependencyInjection/Extension/PrependExtensionInterface.php +++ b/src/Symfony/Component/DependencyInjection/Extension/PrependExtensionInterface.php @@ -21,4 +21,4 @@ interface PrependExtensionInterface @@ -4472,7 +4207,6 @@ index 0df94e1092..061e7d7fd9 100644 + public function prepend(ContainerBuilder $container): void; } diff --git a/src/Symfony/Component/DependencyInjection/LazyProxy/Instantiator/InstantiatorInterface.php b/src/Symfony/Component/DependencyInjection/LazyProxy/Instantiator/InstantiatorInterface.php -index f4c6b29258..1402331f9e 100644 --- a/src/Symfony/Component/DependencyInjection/LazyProxy/Instantiator/InstantiatorInterface.php +++ b/src/Symfony/Component/DependencyInjection/LazyProxy/Instantiator/InstantiatorInterface.php @@ -31,4 +31,4 @@ interface InstantiatorInterface @@ -4482,7 +4216,6 @@ index f4c6b29258..1402331f9e 100644 + public function instantiateProxy(ContainerInterface $container, Definition $definition, string $id, callable $realInstantiator): object; } diff --git a/src/Symfony/Component/DependencyInjection/Loader/FileLoader.php b/src/Symfony/Component/DependencyInjection/Loader/FileLoader.php -index 86543c1e85..4772c08c3d 100644 --- a/src/Symfony/Component/DependencyInjection/Loader/FileLoader.php +++ b/src/Symfony/Component/DependencyInjection/Loader/FileLoader.php @@ -99,5 +99,5 @@ abstract class FileLoader extends BaseFileLoader @@ -4507,7 +4240,6 @@ index 86543c1e85..4772c08c3d 100644 { $this->container->removeBindings($id); diff --git a/src/Symfony/Component/DependencyInjection/ParameterBag/ContainerBagInterface.php b/src/Symfony/Component/DependencyInjection/ParameterBag/ContainerBagInterface.php -index eeff6538c5..8ac7149b37 100644 --- a/src/Symfony/Component/DependencyInjection/ParameterBag/ContainerBagInterface.php +++ b/src/Symfony/Component/DependencyInjection/ParameterBag/ContainerBagInterface.php @@ -40,5 +40,5 @@ interface ContainerBagInterface extends ContainerInterface @@ -4518,7 +4250,6 @@ index eeff6538c5..8ac7149b37 100644 /** diff --git a/src/Symfony/Component/DependencyInjection/ParameterBag/EnvPlaceholderParameterBag.php b/src/Symfony/Component/DependencyInjection/ParameterBag/EnvPlaceholderParameterBag.php -index 9c66e1f944..619e44fc73 100644 --- a/src/Symfony/Component/DependencyInjection/ParameterBag/EnvPlaceholderParameterBag.php +++ b/src/Symfony/Component/DependencyInjection/ParameterBag/EnvPlaceholderParameterBag.php @@ -91,5 +91,5 @@ class EnvPlaceholderParameterBag extends ParameterBag @@ -4550,7 +4281,6 @@ index 9c66e1f944..619e44fc73 100644 { if ($this->resolved) { diff --git a/src/Symfony/Component/DependencyInjection/ParameterBag/FrozenParameterBag.php b/src/Symfony/Component/DependencyInjection/ParameterBag/FrozenParameterBag.php -index 1ede090384..7b6b63c599 100644 --- a/src/Symfony/Component/DependencyInjection/ParameterBag/FrozenParameterBag.php +++ b/src/Symfony/Component/DependencyInjection/ParameterBag/FrozenParameterBag.php @@ -38,5 +38,5 @@ class FrozenParameterBag extends ParameterBag @@ -4589,7 +4319,6 @@ index 1ede090384..7b6b63c599 100644 { throw new LogicException('Impossible to call remove() on a frozen ParameterBag.'); diff --git a/src/Symfony/Component/DependencyInjection/ParameterBag/ParameterBag.php b/src/Symfony/Component/DependencyInjection/ParameterBag/ParameterBag.php -index 6ba8a4cf7c..5e5e22bc09 100644 --- a/src/Symfony/Component/DependencyInjection/ParameterBag/ParameterBag.php +++ b/src/Symfony/Component/DependencyInjection/ParameterBag/ParameterBag.php @@ -35,5 +35,5 @@ class ParameterBag implements ParameterBagInterface @@ -4642,7 +4371,6 @@ index 6ba8a4cf7c..5e5e22bc09 100644 { return $this->resolved; diff --git a/src/Symfony/Component/DependencyInjection/ParameterBag/ParameterBagInterface.php b/src/Symfony/Component/DependencyInjection/ParameterBag/ParameterBagInterface.php -index 18ddfde147..b8651648bd 100644 --- a/src/Symfony/Component/DependencyInjection/ParameterBag/ParameterBagInterface.php +++ b/src/Symfony/Component/DependencyInjection/ParameterBag/ParameterBagInterface.php @@ -29,5 +29,5 @@ interface ParameterBagInterface @@ -4688,7 +4416,6 @@ index 18ddfde147..b8651648bd 100644 /** diff --git a/src/Symfony/Component/DependencyInjection/TypedReference.php b/src/Symfony/Component/DependencyInjection/TypedReference.php -index 9b431cd65b..5fdb0643cd 100644 --- a/src/Symfony/Component/DependencyInjection/TypedReference.php +++ b/src/Symfony/Component/DependencyInjection/TypedReference.php @@ -41,5 +41,5 @@ class TypedReference extends Reference @@ -4699,7 +4426,6 @@ index 9b431cd65b..5fdb0643cd 100644 { return $this->type; diff --git a/src/Symfony/Component/DomCrawler/AbstractUriElement.php b/src/Symfony/Component/DomCrawler/AbstractUriElement.php -index f610b014a0..9458751c28 100644 --- a/src/Symfony/Component/DomCrawler/AbstractUriElement.php +++ b/src/Symfony/Component/DomCrawler/AbstractUriElement.php @@ -120,4 +120,4 @@ abstract class AbstractUriElement @@ -4709,7 +4435,6 @@ index f610b014a0..9458751c28 100644 + abstract protected function setNode(\DOMElement $node): void; } diff --git a/src/Symfony/Component/DomCrawler/Crawler.php b/src/Symfony/Component/DomCrawler/Crawler.php -index 274aeee5fc..ccf37dae8b 100644 --- a/src/Symfony/Component/DomCrawler/Crawler.php +++ b/src/Symfony/Component/DomCrawler/Crawler.php @@ -96,5 +96,5 @@ class Crawler implements \Countable, \IteratorAggregate @@ -4790,7 +4515,6 @@ index 274aeee5fc..ccf37dae8b 100644 { $this->namespaces[$prefix] = $namespace; diff --git a/src/Symfony/Component/DomCrawler/Field/ChoiceFormField.php b/src/Symfony/Component/DomCrawler/Field/ChoiceFormField.php -index dcae5490ad..4357de8275 100644 --- a/src/Symfony/Component/DomCrawler/Field/ChoiceFormField.php +++ b/src/Symfony/Component/DomCrawler/Field/ChoiceFormField.php @@ -64,5 +64,5 @@ class ChoiceFormField extends FormField @@ -4829,7 +4553,6 @@ index dcae5490ad..4357de8275 100644 { if ('input' !== $this->node->nodeName && 'select' !== $this->node->nodeName) { diff --git a/src/Symfony/Component/DomCrawler/Field/FileFormField.php b/src/Symfony/Component/DomCrawler/Field/FileFormField.php -index 4ebe766f0b..eca59a131d 100644 --- a/src/Symfony/Component/DomCrawler/Field/FileFormField.php +++ b/src/Symfony/Component/DomCrawler/Field/FileFormField.php @@ -28,5 +28,5 @@ class FileFormField extends FormField @@ -4868,7 +4591,6 @@ index 4ebe766f0b..eca59a131d 100644 { if ('input' !== $this->node->nodeName) { diff --git a/src/Symfony/Component/DomCrawler/Field/FormField.php b/src/Symfony/Component/DomCrawler/Field/FormField.php -index b97d54dda0..b6a9ebb549 100644 --- a/src/Symfony/Component/DomCrawler/Field/FormField.php +++ b/src/Symfony/Component/DomCrawler/Field/FormField.php @@ -96,5 +96,5 @@ abstract class FormField @@ -4885,7 +4607,6 @@ index b97d54dda0..b6a9ebb549 100644 + abstract protected function initialize(): void; } diff --git a/src/Symfony/Component/DomCrawler/Field/InputFormField.php b/src/Symfony/Component/DomCrawler/Field/InputFormField.php -index 19d77352fc..ece901b578 100644 --- a/src/Symfony/Component/DomCrawler/Field/InputFormField.php +++ b/src/Symfony/Component/DomCrawler/Field/InputFormField.php @@ -29,5 +29,5 @@ class InputFormField extends FormField @@ -4896,7 +4617,6 @@ index 19d77352fc..ece901b578 100644 { if ('input' !== $this->node->nodeName && 'button' !== $this->node->nodeName) { diff --git a/src/Symfony/Component/DomCrawler/Field/TextareaFormField.php b/src/Symfony/Component/DomCrawler/Field/TextareaFormField.php -index 5168c52251..cf22473776 100644 --- a/src/Symfony/Component/DomCrawler/Field/TextareaFormField.php +++ b/src/Symfony/Component/DomCrawler/Field/TextareaFormField.php @@ -26,5 +26,5 @@ class TextareaFormField extends FormField @@ -4907,7 +4627,6 @@ index 5168c52251..cf22473776 100644 { if ('textarea' !== $this->node->nodeName) { diff --git a/src/Symfony/Component/DomCrawler/Form.php b/src/Symfony/Component/DomCrawler/Form.php -index 9e53bbb680..51477a8ed7 100644 --- a/src/Symfony/Component/DomCrawler/Form.php +++ b/src/Symfony/Component/DomCrawler/Form.php @@ -249,5 +249,5 @@ class Form extends Link implements \ArrayAccess @@ -4932,7 +4651,6 @@ index 9e53bbb680..51477a8ed7 100644 { $this->button = $node; diff --git a/src/Symfony/Component/DomCrawler/Image.php b/src/Symfony/Component/DomCrawler/Image.php -index 725e3aea38..9ada91a4be 100644 --- a/src/Symfony/Component/DomCrawler/Image.php +++ b/src/Symfony/Component/DomCrawler/Image.php @@ -30,5 +30,5 @@ class Image extends AbstractUriElement @@ -4943,7 +4661,6 @@ index 725e3aea38..9ada91a4be 100644 { if ('img' !== $node->nodeName) { diff --git a/src/Symfony/Component/DomCrawler/Link.php b/src/Symfony/Component/DomCrawler/Link.php -index 681a2f7a23..07ca3531a1 100644 --- a/src/Symfony/Component/DomCrawler/Link.php +++ b/src/Symfony/Component/DomCrawler/Link.php @@ -27,5 +27,5 @@ class Link extends AbstractUriElement @@ -4954,7 +4671,6 @@ index 681a2f7a23..07ca3531a1 100644 { if ('a' !== $node->nodeName && 'area' !== $node->nodeName && 'link' !== $node->nodeName) { diff --git a/src/Symfony/Component/EventDispatcher/Debug/TraceableEventDispatcher.php b/src/Symfony/Component/EventDispatcher/Debug/TraceableEventDispatcher.php -index f1b982315c..ed8ad1fab4 100644 --- a/src/Symfony/Component/EventDispatcher/Debug/TraceableEventDispatcher.php +++ b/src/Symfony/Component/EventDispatcher/Debug/TraceableEventDispatcher.php @@ -55,5 +55,5 @@ class TraceableEventDispatcher implements EventDispatcherInterface, ResetInterfa @@ -5007,7 +4723,6 @@ index f1b982315c..ed8ad1fab4 100644 { } diff --git a/src/Symfony/Component/EventDispatcher/DependencyInjection/RegisterListenersPass.php b/src/Symfony/Component/EventDispatcher/DependencyInjection/RegisterListenersPass.php -index c86f438d41..3bfb39db57 100644 --- a/src/Symfony/Component/EventDispatcher/DependencyInjection/RegisterListenersPass.php +++ b/src/Symfony/Component/EventDispatcher/DependencyInjection/RegisterListenersPass.php @@ -52,5 +52,5 @@ class RegisterListenersPass implements CompilerPassInterface @@ -5018,7 +4733,6 @@ index c86f438d41..3bfb39db57 100644 { if (!$container->hasDefinition('event_dispatcher') && !$container->hasAlias('event_dispatcher')) { diff --git a/src/Symfony/Component/EventDispatcher/EventDispatcher.php b/src/Symfony/Component/EventDispatcher/EventDispatcher.php -index 327803af67..2466d748ec 100644 --- a/src/Symfony/Component/EventDispatcher/EventDispatcher.php +++ b/src/Symfony/Component/EventDispatcher/EventDispatcher.php @@ -127,5 +127,5 @@ class EventDispatcher implements EventDispatcherInterface @@ -5057,7 +4771,6 @@ index 327803af67..2466d748ec 100644 { $stoppable = $event instanceof StoppableEventInterface; diff --git a/src/Symfony/Component/EventDispatcher/EventDispatcherInterface.php b/src/Symfony/Component/EventDispatcher/EventDispatcherInterface.php -index 3cd94c9388..c423905c11 100644 --- a/src/Symfony/Component/EventDispatcher/EventDispatcherInterface.php +++ b/src/Symfony/Component/EventDispatcher/EventDispatcherInterface.php @@ -31,5 +31,5 @@ interface EventDispatcherInterface extends ContractsEventDispatcherInterface @@ -5088,7 +4801,6 @@ index 3cd94c9388..c423905c11 100644 /** diff --git a/src/Symfony/Component/EventDispatcher/EventSubscriberInterface.php b/src/Symfony/Component/EventDispatcher/EventSubscriberInterface.php -index 2085e428e9..ca0d6964e5 100644 --- a/src/Symfony/Component/EventDispatcher/EventSubscriberInterface.php +++ b/src/Symfony/Component/EventDispatcher/EventSubscriberInterface.php @@ -46,4 +46,4 @@ interface EventSubscriberInterface @@ -5098,7 +4810,6 @@ index 2085e428e9..ca0d6964e5 100644 + public static function getSubscribedEvents(): array; } diff --git a/src/Symfony/Component/EventDispatcher/ImmutableEventDispatcher.php b/src/Symfony/Component/EventDispatcher/ImmutableEventDispatcher.php -index d385d3f833..1fc9f23ea0 100644 --- a/src/Symfony/Component/EventDispatcher/ImmutableEventDispatcher.php +++ b/src/Symfony/Component/EventDispatcher/ImmutableEventDispatcher.php @@ -34,5 +34,5 @@ class ImmutableEventDispatcher implements EventDispatcherInterface @@ -5130,7 +4841,6 @@ index d385d3f833..1fc9f23ea0 100644 { throw new \BadMethodCallException('Unmodifiable event dispatchers must not be modified.'); diff --git a/src/Symfony/Component/ExpressionLanguage/Compiler.php b/src/Symfony/Component/ExpressionLanguage/Compiler.php -index ab50d361e3..c25e18117b 100644 --- a/src/Symfony/Component/ExpressionLanguage/Compiler.php +++ b/src/Symfony/Component/ExpressionLanguage/Compiler.php @@ -32,5 +32,5 @@ class Compiler implements ResetInterface @@ -5148,7 +4858,6 @@ index ab50d361e3..c25e18117b 100644 { $current = $this->source; diff --git a/src/Symfony/Component/ExpressionLanguage/ExpressionFunctionProviderInterface.php b/src/Symfony/Component/ExpressionLanguage/ExpressionFunctionProviderInterface.php -index 479aeef880..272954c082 100644 --- a/src/Symfony/Component/ExpressionLanguage/ExpressionFunctionProviderInterface.php +++ b/src/Symfony/Component/ExpressionLanguage/ExpressionFunctionProviderInterface.php @@ -20,4 +20,4 @@ interface ExpressionFunctionProviderInterface @@ -5158,7 +4867,6 @@ index 479aeef880..272954c082 100644 + public function getFunctions(): array; } diff --git a/src/Symfony/Component/ExpressionLanguage/ExpressionLanguage.php b/src/Symfony/Component/ExpressionLanguage/ExpressionLanguage.php -index 9e107401a2..7f92321a2b 100644 --- a/src/Symfony/Component/ExpressionLanguage/ExpressionLanguage.php +++ b/src/Symfony/Component/ExpressionLanguage/ExpressionLanguage.php @@ -117,5 +117,5 @@ class ExpressionLanguage @@ -5190,7 +4898,6 @@ index 9e107401a2..7f92321a2b 100644 { $this->addFunction(ExpressionFunction::fromPhp('constant')); diff --git a/src/Symfony/Component/ExpressionLanguage/Node/FunctionNode.php b/src/Symfony/Component/ExpressionLanguage/Node/FunctionNode.php -index 33323f388f..811fec7e2e 100644 --- a/src/Symfony/Component/ExpressionLanguage/Node/FunctionNode.php +++ b/src/Symfony/Component/ExpressionLanguage/Node/FunctionNode.php @@ -54,5 +54,5 @@ class FunctionNode extends Node @@ -5201,7 +4908,6 @@ index 33323f388f..811fec7e2e 100644 { $array = []; diff --git a/src/Symfony/Component/ExpressionLanguage/Node/Node.php b/src/Symfony/Component/ExpressionLanguage/Node/Node.php -index 91fcc363ed..8756971315 100644 --- a/src/Symfony/Component/ExpressionLanguage/Node/Node.php +++ b/src/Symfony/Component/ExpressionLanguage/Node/Node.php @@ -61,5 +61,5 @@ class Node @@ -5247,7 +4953,6 @@ index 91fcc363ed..8756971315 100644 { $expectedKey = 0; diff --git a/src/Symfony/Component/ExpressionLanguage/ParsedExpression.php b/src/Symfony/Component/ExpressionLanguage/ParsedExpression.php -index 239624ec2c..3b497d5ccf 100644 --- a/src/Symfony/Component/ExpressionLanguage/ParsedExpression.php +++ b/src/Symfony/Component/ExpressionLanguage/ParsedExpression.php @@ -33,5 +33,5 @@ class ParsedExpression extends Expression @@ -5258,7 +4963,6 @@ index 239624ec2c..3b497d5ccf 100644 { return $this->nodes; diff --git a/src/Symfony/Component/ExpressionLanguage/Parser.php b/src/Symfony/Component/ExpressionLanguage/Parser.php -index a163a7a82f..3f83e0cfe8 100644 --- a/src/Symfony/Component/ExpressionLanguage/Parser.php +++ b/src/Symfony/Component/ExpressionLanguage/Parser.php @@ -134,5 +134,5 @@ class Parser @@ -5318,7 +5022,6 @@ index a163a7a82f..3f83e0cfe8 100644 { $args = []; diff --git a/src/Symfony/Component/ExpressionLanguage/SerializedParsedExpression.php b/src/Symfony/Component/ExpressionLanguage/SerializedParsedExpression.php -index 5691907c86..92d423af86 100644 --- a/src/Symfony/Component/ExpressionLanguage/SerializedParsedExpression.php +++ b/src/Symfony/Component/ExpressionLanguage/SerializedParsedExpression.php @@ -36,5 +36,5 @@ class SerializedParsedExpression extends ParsedExpression @@ -5329,7 +5032,6 @@ index 5691907c86..92d423af86 100644 { return unserialize($this->nodes); diff --git a/src/Symfony/Component/ExpressionLanguage/TokenStream.php b/src/Symfony/Component/ExpressionLanguage/TokenStream.php -index 241725b9c5..420932897f 100644 --- a/src/Symfony/Component/ExpressionLanguage/TokenStream.php +++ b/src/Symfony/Component/ExpressionLanguage/TokenStream.php @@ -45,5 +45,5 @@ class TokenStream @@ -5347,7 +5049,6 @@ index 241725b9c5..420932897f 100644 { $token = $this->current; diff --git a/src/Symfony/Component/Filesystem/Filesystem.php b/src/Symfony/Component/Filesystem/Filesystem.php -index a379ce1863..e2035fb337 100644 --- a/src/Symfony/Component/Filesystem/Filesystem.php +++ b/src/Symfony/Component/Filesystem/Filesystem.php @@ -37,5 +37,5 @@ class Filesystem @@ -5442,7 +5143,6 @@ index a379ce1863..e2035fb337 100644 { if (\is_array($content)) { diff --git a/src/Symfony/Component/Finder/Finder.php b/src/Symfony/Component/Finder/Finder.php -index 62c3f9e24f..f5055abd0c 100644 --- a/src/Symfony/Component/Finder/Finder.php +++ b/src/Symfony/Component/Finder/Finder.php @@ -400,5 +400,5 @@ class Finder implements \IteratorAggregate, \Countable @@ -5453,7 +5153,6 @@ index 62c3f9e24f..f5055abd0c 100644 { foreach ((array) $pattern as $p) { diff --git a/src/Symfony/Component/Form/AbstractExtension.php b/src/Symfony/Component/Form/AbstractExtension.php -index cffca7d398..f528c135a2 100644 --- a/src/Symfony/Component/Form/AbstractExtension.php +++ b/src/Symfony/Component/Form/AbstractExtension.php @@ -99,5 +99,5 @@ abstract class AbstractExtension implements FormExtensionInterface @@ -5471,7 +5170,6 @@ index cffca7d398..f528c135a2 100644 { return null; diff --git a/src/Symfony/Component/Form/AbstractRendererEngine.php b/src/Symfony/Component/Form/AbstractRendererEngine.php -index 3f1ab79c26..bddb459b86 100644 --- a/src/Symfony/Component/Form/AbstractRendererEngine.php +++ b/src/Symfony/Component/Form/AbstractRendererEngine.php @@ -65,5 +65,5 @@ abstract class AbstractRendererEngine implements FormRendererEngineInterface, Re @@ -5489,7 +5187,6 @@ index 3f1ab79c26..bddb459b86 100644 /** diff --git a/src/Symfony/Component/Form/AbstractType.php b/src/Symfony/Component/Form/AbstractType.php -index ad4b195696..ba4cf5c85b 100644 --- a/src/Symfony/Component/Form/AbstractType.php +++ b/src/Symfony/Component/Form/AbstractType.php @@ -24,5 +24,5 @@ abstract class AbstractType implements FormTypeInterface @@ -5535,7 +5232,6 @@ index ad4b195696..ba4cf5c85b 100644 { return FormType::class; diff --git a/src/Symfony/Component/Form/AbstractTypeExtension.php b/src/Symfony/Component/Form/AbstractTypeExtension.php -index 422f28bf33..b1d608fd4d 100644 --- a/src/Symfony/Component/Form/AbstractTypeExtension.php +++ b/src/Symfony/Component/Form/AbstractTypeExtension.php @@ -22,5 +22,5 @@ abstract class AbstractTypeExtension implements FormTypeExtensionInterface @@ -5567,7 +5263,6 @@ index 422f28bf33..b1d608fd4d 100644 { } diff --git a/src/Symfony/Component/Form/ButtonBuilder.php b/src/Symfony/Component/Form/ButtonBuilder.php -index 20a30968d4..dbded1d7f3 100644 --- a/src/Symfony/Component/Form/ButtonBuilder.php +++ b/src/Symfony/Component/Form/ButtonBuilder.php @@ -57,5 +57,5 @@ class ButtonBuilder implements \IteratorAggregate, FormBuilderInterface @@ -5795,7 +5490,6 @@ index 20a30968d4..dbded1d7f3 100644 { throw new BadMethodCallException('Buttons do not support "is empty" callback.'); diff --git a/src/Symfony/Component/Form/ChoiceList/Factory/CachingFactoryDecorator.php b/src/Symfony/Component/Form/ChoiceList/Factory/CachingFactoryDecorator.php -index 40c0604ea4..34f7f441f2 100644 --- a/src/Symfony/Component/Form/ChoiceList/Factory/CachingFactoryDecorator.php +++ b/src/Symfony/Component/Form/ChoiceList/Factory/CachingFactoryDecorator.php @@ -218,5 +218,5 @@ class CachingFactoryDecorator implements ChoiceListFactoryInterface, ResetInterf @@ -5806,7 +5500,6 @@ index 40c0604ea4..34f7f441f2 100644 { $this->lists = []; diff --git a/src/Symfony/Component/Form/Command/DebugCommand.php b/src/Symfony/Component/Form/Command/DebugCommand.php -index 4a142e2965..dd99014998 100644 --- a/src/Symfony/Component/Form/Command/DebugCommand.php +++ b/src/Symfony/Component/Form/Command/DebugCommand.php @@ -58,5 +58,5 @@ class DebugCommand extends Command @@ -5817,7 +5510,6 @@ index 4a142e2965..dd99014998 100644 { $this diff --git a/src/Symfony/Component/Form/DataMapperInterface.php b/src/Symfony/Component/Form/DataMapperInterface.php -index f04137aec6..4e874c8730 100644 --- a/src/Symfony/Component/Form/DataMapperInterface.php +++ b/src/Symfony/Component/Form/DataMapperInterface.php @@ -30,5 +30,5 @@ interface DataMapperInterface @@ -5834,7 +5526,6 @@ index f04137aec6..4e874c8730 100644 + public function mapFormsToData(\Traversable $forms, mixed &$viewData): void; } diff --git a/src/Symfony/Component/Form/DataTransformerInterface.php b/src/Symfony/Component/Form/DataTransformerInterface.php -index 85fb99d218..6cc654f681 100644 --- a/src/Symfony/Component/Form/DataTransformerInterface.php +++ b/src/Symfony/Component/Form/DataTransformerInterface.php @@ -65,5 +65,5 @@ interface DataTransformerInterface @@ -5851,7 +5542,6 @@ index 85fb99d218..6cc654f681 100644 + public function reverseTransform(mixed $value): mixed; } diff --git a/src/Symfony/Component/Form/DependencyInjection/FormPass.php b/src/Symfony/Component/Form/DependencyInjection/FormPass.php -index efb6d5c8bb..ab3befa3f0 100644 --- a/src/Symfony/Component/Form/DependencyInjection/FormPass.php +++ b/src/Symfony/Component/Form/DependencyInjection/FormPass.php @@ -34,5 +34,5 @@ class FormPass implements CompilerPassInterface @@ -5862,7 +5552,6 @@ index efb6d5c8bb..ab3befa3f0 100644 { if (!$container->hasDefinition('form.extension')) { diff --git a/src/Symfony/Component/Form/Extension/Core/DataMapper/CheckboxListMapper.php b/src/Symfony/Component/Form/Extension/Core/DataMapper/CheckboxListMapper.php -index 119c81107d..cf9f6f16af 100644 --- a/src/Symfony/Component/Form/Extension/Core/DataMapper/CheckboxListMapper.php +++ b/src/Symfony/Component/Form/Extension/Core/DataMapper/CheckboxListMapper.php @@ -29,5 +29,5 @@ class CheckboxListMapper implements DataMapperInterface @@ -5880,7 +5569,6 @@ index 119c81107d..cf9f6f16af 100644 { if (!\is_array($choices)) { diff --git a/src/Symfony/Component/Form/Extension/Core/DataMapper/RadioListMapper.php b/src/Symfony/Component/Form/Extension/Core/DataMapper/RadioListMapper.php -index 37fdba0c35..ed6557a3d8 100644 --- a/src/Symfony/Component/Form/Extension/Core/DataMapper/RadioListMapper.php +++ b/src/Symfony/Component/Form/Extension/Core/DataMapper/RadioListMapper.php @@ -29,5 +29,5 @@ class RadioListMapper implements DataMapperInterface @@ -5898,7 +5586,6 @@ index 37fdba0c35..ed6557a3d8 100644 { if (null !== $choice && !\is_string($choice)) { diff --git a/src/Symfony/Component/Form/Extension/Core/EventListener/FixUrlProtocolListener.php b/src/Symfony/Component/Form/Extension/Core/EventListener/FixUrlProtocolListener.php -index 7189977549..29ec9e3efc 100644 --- a/src/Symfony/Component/Form/Extension/Core/EventListener/FixUrlProtocolListener.php +++ b/src/Symfony/Component/Form/Extension/Core/EventListener/FixUrlProtocolListener.php @@ -36,5 +36,5 @@ class FixUrlProtocolListener implements EventSubscriberInterface @@ -5909,7 +5596,6 @@ index 7189977549..29ec9e3efc 100644 { $data = $event->getData(); diff --git a/src/Symfony/Component/Form/Extension/Core/EventListener/MergeCollectionListener.php b/src/Symfony/Component/Form/Extension/Core/EventListener/MergeCollectionListener.php -index 62cd0a42a7..55ab20aabc 100644 --- a/src/Symfony/Component/Form/Extension/Core/EventListener/MergeCollectionListener.php +++ b/src/Symfony/Component/Form/Extension/Core/EventListener/MergeCollectionListener.php @@ -45,5 +45,5 @@ class MergeCollectionListener implements EventSubscriberInterface @@ -5920,7 +5606,6 @@ index 62cd0a42a7..55ab20aabc 100644 { $dataToMergeInto = $event->getForm()->getNormData(); diff --git a/src/Symfony/Component/Form/Extension/Core/EventListener/ResizeFormListener.php b/src/Symfony/Component/Form/Extension/Core/EventListener/ResizeFormListener.php -index cec439754e..0ef6b26c3e 100644 --- a/src/Symfony/Component/Form/Extension/Core/EventListener/ResizeFormListener.php +++ b/src/Symfony/Component/Form/Extension/Core/EventListener/ResizeFormListener.php @@ -56,5 +56,5 @@ class ResizeFormListener implements EventSubscriberInterface @@ -5945,7 +5630,6 @@ index cec439754e..0ef6b26c3e 100644 { $form = $event->getForm(); diff --git a/src/Symfony/Component/Form/Extension/Core/EventListener/TransformationFailureListener.php b/src/Symfony/Component/Form/Extension/Core/EventListener/TransformationFailureListener.php -index c9c216b59f..82b8cfb33b 100644 --- a/src/Symfony/Component/Form/Extension/Core/EventListener/TransformationFailureListener.php +++ b/src/Symfony/Component/Form/Extension/Core/EventListener/TransformationFailureListener.php @@ -40,5 +40,5 @@ class TransformationFailureListener implements EventSubscriberInterface @@ -5956,7 +5640,6 @@ index c9c216b59f..82b8cfb33b 100644 { $form = $event->getForm(); diff --git a/src/Symfony/Component/Form/Extension/Core/EventListener/TrimListener.php b/src/Symfony/Component/Form/Extension/Core/EventListener/TrimListener.php -index 81a55f3cb0..ea669fb590 100644 --- a/src/Symfony/Component/Form/Extension/Core/EventListener/TrimListener.php +++ b/src/Symfony/Component/Form/Extension/Core/EventListener/TrimListener.php @@ -27,5 +27,5 @@ class TrimListener implements EventSubscriberInterface @@ -5967,7 +5650,6 @@ index 81a55f3cb0..ea669fb590 100644 { $data = $event->getData(); diff --git a/src/Symfony/Component/Form/Extension/Core/Type/BaseType.php b/src/Symfony/Component/Form/Extension/Core/Type/BaseType.php -index 5e2ae22481..760cb1a132 100644 --- a/src/Symfony/Component/Form/Extension/Core/Type/BaseType.php +++ b/src/Symfony/Component/Form/Extension/Core/Type/BaseType.php @@ -33,5 +33,5 @@ abstract class BaseType extends AbstractType @@ -5992,7 +5674,6 @@ index 5e2ae22481..760cb1a132 100644 { $resolver->setDefaults([ diff --git a/src/Symfony/Component/Form/Extension/Core/Type/BirthdayType.php b/src/Symfony/Component/Form/Extension/Core/Type/BirthdayType.php -index fa60d016eb..fdb786cc61 100644 --- a/src/Symfony/Component/Form/Extension/Core/Type/BirthdayType.php +++ b/src/Symfony/Component/Form/Extension/Core/Type/BirthdayType.php @@ -20,5 +20,5 @@ class BirthdayType extends AbstractType @@ -6003,7 +5684,6 @@ index fa60d016eb..fdb786cc61 100644 { $resolver->setDefaults([ diff --git a/src/Symfony/Component/Form/Extension/Core/Type/ButtonType.php b/src/Symfony/Component/Form/Extension/Core/Type/ButtonType.php -index d710546407..5ff4dc9989 100644 --- a/src/Symfony/Component/Form/Extension/Core/Type/ButtonType.php +++ b/src/Symfony/Component/Form/Extension/Core/Type/ButtonType.php @@ -35,5 +35,5 @@ class ButtonType extends BaseType implements ButtonTypeInterface @@ -6014,7 +5694,6 @@ index d710546407..5ff4dc9989 100644 { parent::configureOptions($resolver); diff --git a/src/Symfony/Component/Form/Extension/Core/Type/CheckboxType.php b/src/Symfony/Component/Form/Extension/Core/Type/CheckboxType.php -index 291ede93ef..a4128a3880 100644 --- a/src/Symfony/Component/Form/Extension/Core/Type/CheckboxType.php +++ b/src/Symfony/Component/Form/Extension/Core/Type/CheckboxType.php @@ -24,5 +24,5 @@ class CheckboxType extends AbstractType @@ -6039,7 +5718,6 @@ index 291ede93ef..a4128a3880 100644 { $emptyData = static fn (FormInterface $form, $viewData) => $viewData; diff --git a/src/Symfony/Component/Form/Extension/Core/Type/ChoiceType.php b/src/Symfony/Component/Form/Extension/Core/Type/ChoiceType.php -index 4dcd3b6877..16e18de555 100644 --- a/src/Symfony/Component/Form/Extension/Core/Type/ChoiceType.php +++ b/src/Symfony/Component/Form/Extension/Core/Type/ChoiceType.php @@ -66,5 +66,5 @@ class ChoiceType extends AbstractType @@ -6049,21 +5727,21 @@ index 4dcd3b6877..16e18de555 100644 + public function buildForm(FormBuilderInterface $builder, array $options): void { $unknownValues = []; -@@ -222,5 +222,5 @@ class ChoiceType extends AbstractType +@@ -221,5 +221,5 @@ class ChoiceType extends AbstractType * @return void */ - public function buildView(FormView $view, FormInterface $form, array $options) + public function buildView(FormView $view, FormInterface $form, array $options): void { $choiceTranslationDomain = $options['choice_translation_domain']; -@@ -279,5 +279,5 @@ class ChoiceType extends AbstractType +@@ -278,5 +278,5 @@ class ChoiceType extends AbstractType * @return void */ - public function finishView(FormView $view, FormInterface $form, array $options) + public function finishView(FormView $view, FormInterface $form, array $options): void { if ($options['expanded']) { -@@ -299,5 +299,5 @@ class ChoiceType extends AbstractType +@@ -298,5 +298,5 @@ class ChoiceType extends AbstractType * @return void */ - public function configureOptions(OptionsResolver $resolver) @@ -6071,7 +5749,6 @@ index 4dcd3b6877..16e18de555 100644 { $emptyData = static function (Options $options) { diff --git a/src/Symfony/Component/Form/Extension/Core/Type/CollectionType.php b/src/Symfony/Component/Form/Extension/Core/Type/CollectionType.php -index 0216e61dd5..0ca3eebc0b 100644 --- a/src/Symfony/Component/Form/Extension/Core/Type/CollectionType.php +++ b/src/Symfony/Component/Form/Extension/Core/Type/CollectionType.php @@ -25,5 +25,5 @@ class CollectionType extends AbstractType @@ -6103,7 +5780,6 @@ index 0216e61dd5..0ca3eebc0b 100644 { $entryOptionsNormalizer = static function (Options $options, $value) { diff --git a/src/Symfony/Component/Form/Extension/Core/Type/ColorType.php b/src/Symfony/Component/Form/Extension/Core/Type/ColorType.php -index 31538fc3c7..de208cdade 100644 --- a/src/Symfony/Component/Form/Extension/Core/Type/ColorType.php +++ b/src/Symfony/Component/Form/Extension/Core/Type/ColorType.php @@ -37,5 +37,5 @@ class ColorType extends AbstractType @@ -6121,7 +5797,6 @@ index 31538fc3c7..de208cdade 100644 { $resolver->setDefaults([ diff --git a/src/Symfony/Component/Form/Extension/Core/Type/CountryType.php b/src/Symfony/Component/Form/Extension/Core/Type/CountryType.php -index 6f872660a0..f352beb90d 100644 --- a/src/Symfony/Component/Form/Extension/Core/Type/CountryType.php +++ b/src/Symfony/Component/Form/Extension/Core/Type/CountryType.php @@ -26,5 +26,5 @@ class CountryType extends AbstractType @@ -6132,7 +5807,6 @@ index 6f872660a0..f352beb90d 100644 { $resolver->setDefaults([ diff --git a/src/Symfony/Component/Form/Extension/Core/Type/CurrencyType.php b/src/Symfony/Component/Form/Extension/Core/Type/CurrencyType.php -index 89edc6f630..fc06bbb299 100644 --- a/src/Symfony/Component/Form/Extension/Core/Type/CurrencyType.php +++ b/src/Symfony/Component/Form/Extension/Core/Type/CurrencyType.php @@ -26,5 +26,5 @@ class CurrencyType extends AbstractType @@ -6143,7 +5817,6 @@ index 89edc6f630..fc06bbb299 100644 { $resolver->setDefaults([ diff --git a/src/Symfony/Component/Form/Extension/Core/Type/DateIntervalType.php b/src/Symfony/Component/Form/Extension/Core/Type/DateIntervalType.php -index 655ef6682f..0e525d09f6 100644 --- a/src/Symfony/Component/Form/Extension/Core/Type/DateIntervalType.php +++ b/src/Symfony/Component/Form/Extension/Core/Type/DateIntervalType.php @@ -47,5 +47,5 @@ class DateIntervalType extends AbstractType @@ -6168,7 +5841,6 @@ index 655ef6682f..0e525d09f6 100644 { $compound = static fn (Options $options) => 'single_text' !== $options['widget']; diff --git a/src/Symfony/Component/Form/Extension/Core/Type/DateTimeType.php b/src/Symfony/Component/Form/Extension/Core/Type/DateTimeType.php -index 32c58447cd..ec35f6ee41 100644 --- a/src/Symfony/Component/Form/Extension/Core/Type/DateTimeType.php +++ b/src/Symfony/Component/Form/Extension/Core/Type/DateTimeType.php @@ -51,5 +51,5 @@ class DateTimeType extends AbstractType @@ -6193,7 +5865,6 @@ index 32c58447cd..ec35f6ee41 100644 { $compound = static fn (Options $options) => 'single_text' !== $options['widget']; diff --git a/src/Symfony/Component/Form/Extension/Core/Type/DateType.php b/src/Symfony/Component/Form/Extension/Core/Type/DateType.php -index 3b68dc241a..474139a6ee 100644 --- a/src/Symfony/Component/Form/Extension/Core/Type/DateType.php +++ b/src/Symfony/Component/Form/Extension/Core/Type/DateType.php @@ -47,5 +47,5 @@ class DateType extends AbstractType @@ -6218,7 +5889,6 @@ index 3b68dc241a..474139a6ee 100644 { $compound = static fn (Options $options) => 'single_text' !== $options['widget']; diff --git a/src/Symfony/Component/Form/Extension/Core/Type/EmailType.php b/src/Symfony/Component/Form/Extension/Core/Type/EmailType.php -index 64d01ee67a..0cd6cd3b79 100644 --- a/src/Symfony/Component/Form/Extension/Core/Type/EmailType.php +++ b/src/Symfony/Component/Form/Extension/Core/Type/EmailType.php @@ -20,5 +20,5 @@ class EmailType extends AbstractType @@ -6229,7 +5899,6 @@ index 64d01ee67a..0cd6cd3b79 100644 { $resolver->setDefaults([ diff --git a/src/Symfony/Component/Form/Extension/Core/Type/FileType.php b/src/Symfony/Component/Form/Extension/Core/Type/FileType.php -index cf8e1a7439..2ee4fa5fea 100644 --- a/src/Symfony/Component/Form/Extension/Core/Type/FileType.php +++ b/src/Symfony/Component/Form/Extension/Core/Type/FileType.php @@ -45,5 +45,5 @@ class FileType extends AbstractType @@ -6261,7 +5930,6 @@ index cf8e1a7439..2ee4fa5fea 100644 { $dataClass = null; diff --git a/src/Symfony/Component/Form/Extension/Core/Type/FormType.php b/src/Symfony/Component/Form/Extension/Core/Type/FormType.php -index 82aa77f0a3..f3abe461c9 100644 --- a/src/Symfony/Component/Form/Extension/Core/Type/FormType.php +++ b/src/Symfony/Component/Form/Extension/Core/Type/FormType.php @@ -42,5 +42,5 @@ class FormType extends BaseType @@ -6293,7 +5961,6 @@ index 82aa77f0a3..f3abe461c9 100644 { parent::configureOptions($resolver); diff --git a/src/Symfony/Component/Form/Extension/Core/Type/HiddenType.php b/src/Symfony/Component/Form/Extension/Core/Type/HiddenType.php -index c4e5eb2ccf..495525f889 100644 --- a/src/Symfony/Component/Form/Extension/Core/Type/HiddenType.php +++ b/src/Symfony/Component/Form/Extension/Core/Type/HiddenType.php @@ -20,5 +20,5 @@ class HiddenType extends AbstractType @@ -6304,7 +5971,6 @@ index c4e5eb2ccf..495525f889 100644 { $resolver->setDefaults([ diff --git a/src/Symfony/Component/Form/Extension/Core/Type/IntegerType.php b/src/Symfony/Component/Form/Extension/Core/Type/IntegerType.php -index a287b66b7c..12dc4a1f71 100644 --- a/src/Symfony/Component/Form/Extension/Core/Type/IntegerType.php +++ b/src/Symfony/Component/Form/Extension/Core/Type/IntegerType.php @@ -24,5 +24,5 @@ class IntegerType extends AbstractType @@ -6329,7 +5995,6 @@ index a287b66b7c..12dc4a1f71 100644 { $resolver->setDefaults([ diff --git a/src/Symfony/Component/Form/Extension/Core/Type/LanguageType.php b/src/Symfony/Component/Form/Extension/Core/Type/LanguageType.php -index eeb9e591a1..b0eb640a5f 100644 --- a/src/Symfony/Component/Form/Extension/Core/Type/LanguageType.php +++ b/src/Symfony/Component/Form/Extension/Core/Type/LanguageType.php @@ -27,5 +27,5 @@ class LanguageType extends AbstractType @@ -6340,7 +6005,6 @@ index eeb9e591a1..b0eb640a5f 100644 { $resolver->setDefaults([ diff --git a/src/Symfony/Component/Form/Extension/Core/Type/LocaleType.php b/src/Symfony/Component/Form/Extension/Core/Type/LocaleType.php -index e98134febd..9f2662031e 100644 --- a/src/Symfony/Component/Form/Extension/Core/Type/LocaleType.php +++ b/src/Symfony/Component/Form/Extension/Core/Type/LocaleType.php @@ -26,5 +26,5 @@ class LocaleType extends AbstractType @@ -6351,7 +6015,6 @@ index e98134febd..9f2662031e 100644 { $resolver->setDefaults([ diff --git a/src/Symfony/Component/Form/Extension/Core/Type/MoneyType.php b/src/Symfony/Component/Form/Extension/Core/Type/MoneyType.php -index 9c9e5b4d7c..c8d4ecf232 100644 --- a/src/Symfony/Component/Form/Extension/Core/Type/MoneyType.php +++ b/src/Symfony/Component/Form/Extension/Core/Type/MoneyType.php @@ -28,5 +28,5 @@ class MoneyType extends AbstractType @@ -6383,7 +6046,6 @@ index 9c9e5b4d7c..c8d4ecf232 100644 { if (!$currency) { diff --git a/src/Symfony/Component/Form/Extension/Core/Type/NumberType.php b/src/Symfony/Component/Form/Extension/Core/Type/NumberType.php -index 578991f9fd..16f39e873b 100644 --- a/src/Symfony/Component/Form/Extension/Core/Type/NumberType.php +++ b/src/Symfony/Component/Form/Extension/Core/Type/NumberType.php @@ -27,5 +27,5 @@ class NumberType extends AbstractType @@ -6408,7 +6070,6 @@ index 578991f9fd..16f39e873b 100644 { $resolver->setDefaults([ diff --git a/src/Symfony/Component/Form/Extension/Core/Type/PasswordType.php b/src/Symfony/Component/Form/Extension/Core/Type/PasswordType.php -index 0c247f0f30..08d7cefb9a 100644 --- a/src/Symfony/Component/Form/Extension/Core/Type/PasswordType.php +++ b/src/Symfony/Component/Form/Extension/Core/Type/PasswordType.php @@ -22,5 +22,5 @@ class PasswordType extends AbstractType @@ -6426,7 +6087,6 @@ index 0c247f0f30..08d7cefb9a 100644 { $resolver->setDefaults([ diff --git a/src/Symfony/Component/Form/Extension/Core/Type/PercentType.php b/src/Symfony/Component/Form/Extension/Core/Type/PercentType.php -index f71e288b3e..30fad82d81 100644 --- a/src/Symfony/Component/Form/Extension/Core/Type/PercentType.php +++ b/src/Symfony/Component/Form/Extension/Core/Type/PercentType.php @@ -24,5 +24,5 @@ class PercentType extends AbstractType @@ -6451,7 +6111,6 @@ index f71e288b3e..30fad82d81 100644 { $resolver->setDefaults([ diff --git a/src/Symfony/Component/Form/Extension/Core/Type/RadioType.php b/src/Symfony/Component/Form/Extension/Core/Type/RadioType.php -index 4b97b0ae21..1889bb0e1e 100644 --- a/src/Symfony/Component/Form/Extension/Core/Type/RadioType.php +++ b/src/Symfony/Component/Form/Extension/Core/Type/RadioType.php @@ -20,5 +20,5 @@ class RadioType extends AbstractType @@ -6462,7 +6121,6 @@ index 4b97b0ae21..1889bb0e1e 100644 { $resolver->setDefaults([ diff --git a/src/Symfony/Component/Form/Extension/Core/Type/RangeType.php b/src/Symfony/Component/Form/Extension/Core/Type/RangeType.php -index 2e33a977d9..ed7e88b5af 100644 --- a/src/Symfony/Component/Form/Extension/Core/Type/RangeType.php +++ b/src/Symfony/Component/Form/Extension/Core/Type/RangeType.php @@ -20,5 +20,5 @@ class RangeType extends AbstractType @@ -6473,7 +6131,6 @@ index 2e33a977d9..ed7e88b5af 100644 { $resolver->setDefaults([ diff --git a/src/Symfony/Component/Form/Extension/Core/Type/RepeatedType.php b/src/Symfony/Component/Form/Extension/Core/Type/RepeatedType.php -index 4176f93e52..8f133ee41d 100644 --- a/src/Symfony/Component/Form/Extension/Core/Type/RepeatedType.php +++ b/src/Symfony/Component/Form/Extension/Core/Type/RepeatedType.php @@ -22,5 +22,5 @@ class RepeatedType extends AbstractType @@ -6491,7 +6148,6 @@ index 4176f93e52..8f133ee41d 100644 { $resolver->setDefaults([ diff --git a/src/Symfony/Component/Form/Extension/Core/Type/SearchType.php b/src/Symfony/Component/Form/Extension/Core/Type/SearchType.php -index 0dca6e42a8..aa51e40efa 100644 --- a/src/Symfony/Component/Form/Extension/Core/Type/SearchType.php +++ b/src/Symfony/Component/Form/Extension/Core/Type/SearchType.php @@ -20,5 +20,5 @@ class SearchType extends AbstractType @@ -6502,7 +6158,6 @@ index 0dca6e42a8..aa51e40efa 100644 { $resolver->setDefaults([ diff --git a/src/Symfony/Component/Form/Extension/Core/Type/SubmitType.php b/src/Symfony/Component/Form/Extension/Core/Type/SubmitType.php -index 3f1b5f95c9..d586bb1463 100644 --- a/src/Symfony/Component/Form/Extension/Core/Type/SubmitType.php +++ b/src/Symfony/Component/Form/Extension/Core/Type/SubmitType.php @@ -28,5 +28,5 @@ class SubmitType extends AbstractType implements SubmitButtonTypeInterface @@ -6520,7 +6175,6 @@ index 3f1b5f95c9..d586bb1463 100644 { $resolver->setDefault('validate', true); diff --git a/src/Symfony/Component/Form/Extension/Core/Type/TelType.php b/src/Symfony/Component/Form/Extension/Core/Type/TelType.php -index 05fdd41626..b6565675ee 100644 --- a/src/Symfony/Component/Form/Extension/Core/Type/TelType.php +++ b/src/Symfony/Component/Form/Extension/Core/Type/TelType.php @@ -20,5 +20,5 @@ class TelType extends AbstractType @@ -6531,7 +6185,6 @@ index 05fdd41626..b6565675ee 100644 { $resolver->setDefaults([ diff --git a/src/Symfony/Component/Form/Extension/Core/Type/TextType.php b/src/Symfony/Component/Form/Extension/Core/Type/TextType.php -index 479ce054d8..e909f2fa3b 100644 --- a/src/Symfony/Component/Form/Extension/Core/Type/TextType.php +++ b/src/Symfony/Component/Form/Extension/Core/Type/TextType.php @@ -22,5 +22,5 @@ class TextType extends AbstractType implements DataTransformerInterface @@ -6549,7 +6202,6 @@ index 479ce054d8..e909f2fa3b 100644 { $resolver->setDefaults([ diff --git a/src/Symfony/Component/Form/Extension/Core/Type/TextareaType.php b/src/Symfony/Component/Form/Extension/Core/Type/TextareaType.php -index 40e7580d80..18c58e30c0 100644 --- a/src/Symfony/Component/Form/Extension/Core/Type/TextareaType.php +++ b/src/Symfony/Component/Form/Extension/Core/Type/TextareaType.php @@ -21,5 +21,5 @@ class TextareaType extends AbstractType @@ -6560,7 +6212,6 @@ index 40e7580d80..18c58e30c0 100644 { $view->vars['pattern'] = null; diff --git a/src/Symfony/Component/Form/Extension/Core/Type/TimeType.php b/src/Symfony/Component/Form/Extension/Core/Type/TimeType.php -index c7d5276960..25d2444547 100644 --- a/src/Symfony/Component/Form/Extension/Core/Type/TimeType.php +++ b/src/Symfony/Component/Form/Extension/Core/Type/TimeType.php @@ -38,5 +38,5 @@ class TimeType extends AbstractType @@ -6585,7 +6236,6 @@ index c7d5276960..25d2444547 100644 { $compound = static fn (Options $options) => 'single_text' !== $options['widget']; diff --git a/src/Symfony/Component/Form/Extension/Core/Type/TimezoneType.php b/src/Symfony/Component/Form/Extension/Core/Type/TimezoneType.php -index a5d4bc61c0..b104414403 100644 --- a/src/Symfony/Component/Form/Extension/Core/Type/TimezoneType.php +++ b/src/Symfony/Component/Form/Extension/Core/Type/TimezoneType.php @@ -29,5 +29,5 @@ class TimezoneType extends AbstractType @@ -6603,7 +6253,6 @@ index a5d4bc61c0..b104414403 100644 { $resolver->setDefaults([ diff --git a/src/Symfony/Component/Form/Extension/Core/Type/TransformationFailureExtension.php b/src/Symfony/Component/Form/Extension/Core/Type/TransformationFailureExtension.php -index 029ad4d439..3814f6ada0 100644 --- a/src/Symfony/Component/Form/Extension/Core/Type/TransformationFailureExtension.php +++ b/src/Symfony/Component/Form/Extension/Core/Type/TransformationFailureExtension.php @@ -32,5 +32,5 @@ class TransformationFailureExtension extends AbstractTypeExtension @@ -6614,7 +6263,6 @@ index 029ad4d439..3814f6ada0 100644 { if (!isset($options['constraints'])) { diff --git a/src/Symfony/Component/Form/Extension/Core/Type/UlidType.php b/src/Symfony/Component/Form/Extension/Core/Type/UlidType.php -index ea3da07c02..78b57ad153 100644 --- a/src/Symfony/Component/Form/Extension/Core/Type/UlidType.php +++ b/src/Symfony/Component/Form/Extension/Core/Type/UlidType.php @@ -25,5 +25,5 @@ class UlidType extends AbstractType @@ -6632,7 +6280,6 @@ index ea3da07c02..78b57ad153 100644 { $resolver->setDefaults([ diff --git a/src/Symfony/Component/Form/Extension/Core/Type/UrlType.php b/src/Symfony/Component/Form/Extension/Core/Type/UrlType.php -index 385c7a25fa..4a8fcc71f2 100644 --- a/src/Symfony/Component/Form/Extension/Core/Type/UrlType.php +++ b/src/Symfony/Component/Form/Extension/Core/Type/UrlType.php @@ -24,5 +24,5 @@ class UrlType extends AbstractType @@ -6657,7 +6304,6 @@ index 385c7a25fa..4a8fcc71f2 100644 { $resolver->setDefaults([ diff --git a/src/Symfony/Component/Form/Extension/Core/Type/UuidType.php b/src/Symfony/Component/Form/Extension/Core/Type/UuidType.php -index 7c0f65b9a0..d79b4d30e6 100644 --- a/src/Symfony/Component/Form/Extension/Core/Type/UuidType.php +++ b/src/Symfony/Component/Form/Extension/Core/Type/UuidType.php @@ -25,5 +25,5 @@ class UuidType extends AbstractType @@ -6675,7 +6321,6 @@ index 7c0f65b9a0..d79b4d30e6 100644 { $resolver->setDefaults([ diff --git a/src/Symfony/Component/Form/Extension/Core/Type/WeekType.php b/src/Symfony/Component/Form/Extension/Core/Type/WeekType.php -index 8027a41a99..9ffba28dac 100644 --- a/src/Symfony/Component/Form/Extension/Core/Type/WeekType.php +++ b/src/Symfony/Component/Form/Extension/Core/Type/WeekType.php @@ -32,5 +32,5 @@ class WeekType extends AbstractType @@ -6700,7 +6345,6 @@ index 8027a41a99..9ffba28dac 100644 { $compound = static fn (Options $options) => 'single_text' !== $options['widget']; diff --git a/src/Symfony/Component/Form/Extension/Csrf/EventListener/CsrfValidationListener.php b/src/Symfony/Component/Form/Extension/Csrf/EventListener/CsrfValidationListener.php -index eca450a165..72330772b9 100644 --- a/src/Symfony/Component/Form/Extension/Csrf/EventListener/CsrfValidationListener.php +++ b/src/Symfony/Component/Form/Extension/Csrf/EventListener/CsrfValidationListener.php @@ -55,5 +55,5 @@ class CsrfValidationListener implements EventSubscriberInterface @@ -6711,7 +6355,6 @@ index eca450a165..72330772b9 100644 { $form = $event->getForm(); diff --git a/src/Symfony/Component/Form/Extension/Csrf/Type/FormTypeCsrfExtension.php b/src/Symfony/Component/Form/Extension/Csrf/Type/FormTypeCsrfExtension.php -index 8c3d45dec0..ff7934deed 100644 --- a/src/Symfony/Component/Form/Extension/Csrf/Type/FormTypeCsrfExtension.php +++ b/src/Symfony/Component/Form/Extension/Csrf/Type/FormTypeCsrfExtension.php @@ -51,5 +51,5 @@ class FormTypeCsrfExtension extends AbstractTypeExtension @@ -6736,7 +6379,6 @@ index 8c3d45dec0..ff7934deed 100644 { $resolver->setDefaults([ diff --git a/src/Symfony/Component/Form/Extension/DataCollector/EventListener/DataCollectorListener.php b/src/Symfony/Component/Form/Extension/DataCollector/EventListener/DataCollectorListener.php -index 41a52e091e..fce936b740 100644 --- a/src/Symfony/Component/Form/Extension/DataCollector/EventListener/DataCollectorListener.php +++ b/src/Symfony/Component/Form/Extension/DataCollector/EventListener/DataCollectorListener.php @@ -47,5 +47,5 @@ class DataCollectorListener implements EventSubscriberInterface @@ -6754,7 +6396,6 @@ index 41a52e091e..fce936b740 100644 { if ($event->getForm()->isRoot()) { diff --git a/src/Symfony/Component/Form/Extension/DataCollector/FormDataCollectorInterface.php b/src/Symfony/Component/Form/Extension/DataCollector/FormDataCollectorInterface.php -index 346c101fe3..40ed4b5e8f 100644 --- a/src/Symfony/Component/Form/Extension/DataCollector/FormDataCollectorInterface.php +++ b/src/Symfony/Component/Form/Extension/DataCollector/FormDataCollectorInterface.php @@ -29,5 +29,5 @@ interface FormDataCollectorInterface extends DataCollectorInterface @@ -6807,7 +6448,6 @@ index 346c101fe3..40ed4b5e8f 100644 /** diff --git a/src/Symfony/Component/Form/Extension/DataCollector/Proxy/ResolvedTypeDataCollectorProxy.php b/src/Symfony/Component/Form/Extension/DataCollector/Proxy/ResolvedTypeDataCollectorProxy.php -index 6c8cf3ee24..0d8fba357e 100644 --- a/src/Symfony/Component/Form/Extension/DataCollector/Proxy/ResolvedTypeDataCollectorProxy.php +++ b/src/Symfony/Component/Form/Extension/DataCollector/Proxy/ResolvedTypeDataCollectorProxy.php @@ -75,5 +75,5 @@ class ResolvedTypeDataCollectorProxy implements ResolvedFormTypeInterface @@ -6832,7 +6472,6 @@ index 6c8cf3ee24..0d8fba357e 100644 { $this->proxiedType->finishView($view, $form, $options); diff --git a/src/Symfony/Component/Form/Extension/DataCollector/Type/DataCollectorTypeExtension.php b/src/Symfony/Component/Form/Extension/DataCollector/Type/DataCollectorTypeExtension.php -index f1e3c903ec..20721f3040 100644 --- a/src/Symfony/Component/Form/Extension/DataCollector/Type/DataCollectorTypeExtension.php +++ b/src/Symfony/Component/Form/Extension/DataCollector/Type/DataCollectorTypeExtension.php @@ -36,5 +36,5 @@ class DataCollectorTypeExtension extends AbstractTypeExtension @@ -6843,7 +6482,6 @@ index f1e3c903ec..20721f3040 100644 { $builder->addEventSubscriber($this->listener); diff --git a/src/Symfony/Component/Form/Extension/HtmlSanitizer/Type/TextTypeHtmlSanitizerExtension.php b/src/Symfony/Component/Form/Extension/HtmlSanitizer/Type/TextTypeHtmlSanitizerExtension.php -index 8e92ea74a5..633d1985db 100644 --- a/src/Symfony/Component/Form/Extension/HtmlSanitizer/Type/TextTypeHtmlSanitizerExtension.php +++ b/src/Symfony/Component/Form/Extension/HtmlSanitizer/Type/TextTypeHtmlSanitizerExtension.php @@ -39,5 +39,5 @@ class TextTypeHtmlSanitizerExtension extends AbstractTypeExtension @@ -6861,7 +6499,6 @@ index 8e92ea74a5..633d1985db 100644 { if (!$options['sanitize_html']) { diff --git a/src/Symfony/Component/Form/Extension/HttpFoundation/HttpFoundationRequestHandler.php b/src/Symfony/Component/Form/Extension/HttpFoundation/HttpFoundationRequestHandler.php -index b4e835c95a..9cbcc28e31 100644 --- a/src/Symfony/Component/Form/Extension/HttpFoundation/HttpFoundationRequestHandler.php +++ b/src/Symfony/Component/Form/Extension/HttpFoundation/HttpFoundationRequestHandler.php @@ -39,5 +39,5 @@ class HttpFoundationRequestHandler implements RequestHandlerInterface @@ -6872,7 +6509,6 @@ index b4e835c95a..9cbcc28e31 100644 { if (!$request instanceof Request) { diff --git a/src/Symfony/Component/Form/Extension/HttpFoundation/Type/FormTypeHttpFoundationExtension.php b/src/Symfony/Component/Form/Extension/HttpFoundation/Type/FormTypeHttpFoundationExtension.php -index cc3e5e1207..f9c85b9a0a 100644 --- a/src/Symfony/Component/Form/Extension/HttpFoundation/Type/FormTypeHttpFoundationExtension.php +++ b/src/Symfony/Component/Form/Extension/HttpFoundation/Type/FormTypeHttpFoundationExtension.php @@ -33,5 +33,5 @@ class FormTypeHttpFoundationExtension extends AbstractTypeExtension @@ -6883,7 +6519,6 @@ index cc3e5e1207..f9c85b9a0a 100644 { $builder->setRequestHandler($this->requestHandler); diff --git a/src/Symfony/Component/Form/Extension/PasswordHasher/EventListener/PasswordHasherListener.php b/src/Symfony/Component/Form/Extension/PasswordHasher/EventListener/PasswordHasherListener.php -index 4854dd3e73..b61c5664f6 100644 --- a/src/Symfony/Component/Form/Extension/PasswordHasher/EventListener/PasswordHasherListener.php +++ b/src/Symfony/Component/Form/Extension/PasswordHasher/EventListener/PasswordHasherListener.php @@ -39,5 +39,5 @@ class PasswordHasherListener @@ -6901,7 +6536,6 @@ index 4854dd3e73..b61c5664f6 100644 { $form = $event->getForm(); diff --git a/src/Symfony/Component/Form/Extension/PasswordHasher/Type/FormTypePasswordHasherExtension.php b/src/Symfony/Component/Form/Extension/PasswordHasher/Type/FormTypePasswordHasherExtension.php -index 5308992863..e799b6ba31 100644 --- a/src/Symfony/Component/Form/Extension/PasswordHasher/Type/FormTypePasswordHasherExtension.php +++ b/src/Symfony/Component/Form/Extension/PasswordHasher/Type/FormTypePasswordHasherExtension.php @@ -31,5 +31,5 @@ class FormTypePasswordHasherExtension extends AbstractTypeExtension @@ -6912,7 +6546,6 @@ index 5308992863..e799b6ba31 100644 { $builder->addEventListener(FormEvents::POST_SUBMIT, [$this->passwordHasherListener, 'hashPasswords']); diff --git a/src/Symfony/Component/Form/Extension/PasswordHasher/Type/PasswordTypePasswordHasherExtension.php b/src/Symfony/Component/Form/Extension/PasswordHasher/Type/PasswordTypePasswordHasherExtension.php -index 6f022fb1bf..aede2bbb52 100644 --- a/src/Symfony/Component/Form/Extension/PasswordHasher/Type/PasswordTypePasswordHasherExtension.php +++ b/src/Symfony/Component/Form/Extension/PasswordHasher/Type/PasswordTypePasswordHasherExtension.php @@ -33,5 +33,5 @@ class PasswordTypePasswordHasherExtension extends AbstractTypeExtension @@ -6930,7 +6563,6 @@ index 6f022fb1bf..aede2bbb52 100644 { $resolver->setDefaults([ diff --git a/src/Symfony/Component/Form/Extension/Validator/Constraints/FormValidator.php b/src/Symfony/Component/Form/Extension/Validator/Constraints/FormValidator.php -index d664e9b500..fbff1c16bf 100644 --- a/src/Symfony/Component/Form/Extension/Validator/Constraints/FormValidator.php +++ b/src/Symfony/Component/Form/Extension/Validator/Constraints/FormValidator.php @@ -33,5 +33,5 @@ class FormValidator extends ConstraintValidator @@ -6941,7 +6573,6 @@ index d664e9b500..fbff1c16bf 100644 { if (!$formConstraint instanceof Form) { diff --git a/src/Symfony/Component/Form/Extension/Validator/EventListener/ValidationListener.php b/src/Symfony/Component/Form/Extension/Validator/EventListener/ValidationListener.php -index e2d4357622..ed84c8b4cf 100644 --- a/src/Symfony/Component/Form/Extension/Validator/EventListener/ValidationListener.php +++ b/src/Symfony/Component/Form/Extension/Validator/EventListener/ValidationListener.php @@ -41,5 +41,5 @@ class ValidationListener implements EventSubscriberInterface @@ -6952,7 +6583,6 @@ index e2d4357622..ed84c8b4cf 100644 { $form = $event->getForm(); diff --git a/src/Symfony/Component/Form/Extension/Validator/Type/BaseValidatorExtension.php b/src/Symfony/Component/Form/Extension/Validator/Type/BaseValidatorExtension.php -index ea01d03699..e9c7e410af 100644 --- a/src/Symfony/Component/Form/Extension/Validator/Type/BaseValidatorExtension.php +++ b/src/Symfony/Component/Form/Extension/Validator/Type/BaseValidatorExtension.php @@ -28,5 +28,5 @@ abstract class BaseValidatorExtension extends AbstractTypeExtension @@ -6963,7 +6593,6 @@ index ea01d03699..e9c7e410af 100644 { // Make sure that validation groups end up as null, closure or array diff --git a/src/Symfony/Component/Form/Extension/Validator/Type/FormTypeValidatorExtension.php b/src/Symfony/Component/Form/Extension/Validator/Type/FormTypeValidatorExtension.php -index 54eebaf63e..e6be9e5266 100644 --- a/src/Symfony/Component/Form/Extension/Validator/Type/FormTypeValidatorExtension.php +++ b/src/Symfony/Component/Form/Extension/Validator/Type/FormTypeValidatorExtension.php @@ -41,5 +41,5 @@ class FormTypeValidatorExtension extends BaseValidatorExtension @@ -6981,7 +6610,6 @@ index 54eebaf63e..e6be9e5266 100644 { parent::configureOptions($resolver); diff --git a/src/Symfony/Component/Form/Extension/Validator/Type/RepeatedTypeValidatorExtension.php b/src/Symfony/Component/Form/Extension/Validator/Type/RepeatedTypeValidatorExtension.php -index d41dc0168c..0cb2b3c6c8 100644 --- a/src/Symfony/Component/Form/Extension/Validator/Type/RepeatedTypeValidatorExtension.php +++ b/src/Symfony/Component/Form/Extension/Validator/Type/RepeatedTypeValidatorExtension.php @@ -25,5 +25,5 @@ class RepeatedTypeValidatorExtension extends AbstractTypeExtension @@ -6992,7 +6620,6 @@ index d41dc0168c..0cb2b3c6c8 100644 { // Map errors to the first field diff --git a/src/Symfony/Component/Form/Extension/Validator/Type/UploadValidatorExtension.php b/src/Symfony/Component/Form/Extension/Validator/Type/UploadValidatorExtension.php -index b7a19ed26a..30c8b9e57c 100644 --- a/src/Symfony/Component/Form/Extension/Validator/Type/UploadValidatorExtension.php +++ b/src/Symfony/Component/Form/Extension/Validator/Type/UploadValidatorExtension.php @@ -36,5 +36,5 @@ class UploadValidatorExtension extends AbstractTypeExtension @@ -7003,7 +6630,6 @@ index b7a19ed26a..30c8b9e57c 100644 { $translator = $this->translator; diff --git a/src/Symfony/Component/Form/Extension/Validator/ViolationMapper/ViolationMapper.php b/src/Symfony/Component/Form/Extension/Validator/ViolationMapper/ViolationMapper.php -index 2f2ccefd30..689a6d5cab 100644 --- a/src/Symfony/Component/Form/Extension/Validator/ViolationMapper/ViolationMapper.php +++ b/src/Symfony/Component/Form/Extension/Validator/ViolationMapper/ViolationMapper.php @@ -42,5 +42,5 @@ class ViolationMapper implements ViolationMapperInterface @@ -7014,7 +6640,6 @@ index 2f2ccefd30..689a6d5cab 100644 { $this->allowNonSynchronized = $allowNonSynchronized; diff --git a/src/Symfony/Component/Form/Extension/Validator/ViolationMapper/ViolationMapperInterface.php b/src/Symfony/Component/Form/Extension/Validator/ViolationMapper/ViolationMapperInterface.php -index a72d41df9e..6a58a1bddc 100644 --- a/src/Symfony/Component/Form/Extension/Validator/ViolationMapper/ViolationMapperInterface.php +++ b/src/Symfony/Component/Form/Extension/Validator/ViolationMapper/ViolationMapperInterface.php @@ -28,4 +28,4 @@ interface ViolationMapperInterface @@ -7024,7 +6649,6 @@ index a72d41df9e..6a58a1bddc 100644 + public function mapViolation(ConstraintViolation $violation, FormInterface $form, bool $allowNonSynchronized = false): void; } diff --git a/src/Symfony/Component/Form/Extension/Validator/ViolationMapper/ViolationPathIterator.php b/src/Symfony/Component/Form/Extension/Validator/ViolationMapper/ViolationPathIterator.php -index ed363a7b15..967d95cc27 100644 --- a/src/Symfony/Component/Form/Extension/Validator/ViolationMapper/ViolationPathIterator.php +++ b/src/Symfony/Component/Form/Extension/Validator/ViolationMapper/ViolationPathIterator.php @@ -27,5 +27,5 @@ class ViolationPathIterator extends PropertyPathIterator @@ -7035,7 +6659,6 @@ index ed363a7b15..967d95cc27 100644 { return $this->path->mapsForm($this->key()); diff --git a/src/Symfony/Component/Form/FormConfigBuilder.php b/src/Symfony/Component/Form/FormConfigBuilder.php -index 9fed3d1a0a..5cd4eb5f16 100644 --- a/src/Symfony/Component/Form/FormConfigBuilder.php +++ b/src/Symfony/Component/Form/FormConfigBuilder.php @@ -537,5 +537,5 @@ class FormConfigBuilder implements FormConfigBuilderInterface @@ -7046,7 +6669,6 @@ index 9fed3d1a0a..5cd4eb5f16 100644 { if ($this->locked) { diff --git a/src/Symfony/Component/Form/FormConfigBuilderInterface.php b/src/Symfony/Component/Form/FormConfigBuilderInterface.php -index 09b9149801..6b22b9f9e8 100644 --- a/src/Symfony/Component/Form/FormConfigBuilderInterface.php +++ b/src/Symfony/Component/Form/FormConfigBuilderInterface.php @@ -209,5 +209,5 @@ interface FormConfigBuilderInterface extends FormConfigInterface @@ -7057,7 +6679,6 @@ index 09b9149801..6b22b9f9e8 100644 /** diff --git a/src/Symfony/Component/Form/FormError.php b/src/Symfony/Component/Form/FormError.php -index 572783c7ac..37d609af00 100644 --- a/src/Symfony/Component/Form/FormError.php +++ b/src/Symfony/Component/Form/FormError.php @@ -104,5 +104,5 @@ class FormError @@ -7068,7 +6689,6 @@ index 572783c7ac..37d609af00 100644 { if (null !== $this->origin) { diff --git a/src/Symfony/Component/Form/FormEvent.php b/src/Symfony/Component/Form/FormEvent.php -index 1e6aa34d63..3f05ff971a 100644 --- a/src/Symfony/Component/Form/FormEvent.php +++ b/src/Symfony/Component/Form/FormEvent.php @@ -49,5 +49,5 @@ class FormEvent extends Event @@ -7079,7 +6699,6 @@ index 1e6aa34d63..3f05ff971a 100644 { $this->data = $data; diff --git a/src/Symfony/Component/Form/FormRenderer.php b/src/Symfony/Component/Form/FormRenderer.php -index 18dec4946b..9272277b5c 100644 --- a/src/Symfony/Component/Form/FormRenderer.php +++ b/src/Symfony/Component/Form/FormRenderer.php @@ -46,5 +46,5 @@ class FormRenderer implements FormRendererInterface @@ -7090,7 +6709,6 @@ index 18dec4946b..9272277b5c 100644 { $this->engine->setTheme($view, $themes, $useDefaultThemes); diff --git a/src/Symfony/Component/Form/FormRendererEngineInterface.php b/src/Symfony/Component/Form/FormRendererEngineInterface.php -index e7de3544a1..739c7b835e 100644 --- a/src/Symfony/Component/Form/FormRendererEngineInterface.php +++ b/src/Symfony/Component/Form/FormRendererEngineInterface.php @@ -28,5 +28,5 @@ interface FormRendererEngineInterface @@ -7107,7 +6725,6 @@ index e7de3544a1..739c7b835e 100644 + public function renderBlock(FormView $view, mixed $resource, string $blockName, array $variables = []): string; } diff --git a/src/Symfony/Component/Form/FormRendererInterface.php b/src/Symfony/Component/Form/FormRendererInterface.php -index 8e805727ce..188a668c77 100644 --- a/src/Symfony/Component/Form/FormRendererInterface.php +++ b/src/Symfony/Component/Form/FormRendererInterface.php @@ -35,5 +35,5 @@ interface FormRendererInterface @@ -7118,7 +6735,6 @@ index 8e805727ce..188a668c77 100644 /** diff --git a/src/Symfony/Component/Form/FormTypeExtensionInterface.php b/src/Symfony/Component/Form/FormTypeExtensionInterface.php -index 1937834515..25712a13d7 100644 --- a/src/Symfony/Component/Form/FormTypeExtensionInterface.php +++ b/src/Symfony/Component/Form/FormTypeExtensionInterface.php @@ -31,5 +31,5 @@ interface FormTypeExtensionInterface @@ -7149,7 +6765,6 @@ index 1937834515..25712a13d7 100644 /** diff --git a/src/Symfony/Component/Form/FormTypeGuesserInterface.php b/src/Symfony/Component/Form/FormTypeGuesserInterface.php -index 61e2c5f80d..4d6b335474 100644 --- a/src/Symfony/Component/Form/FormTypeGuesserInterface.php +++ b/src/Symfony/Component/Form/FormTypeGuesserInterface.php @@ -22,5 +22,5 @@ interface FormTypeGuesserInterface @@ -7173,14 +6788,13 @@ index 61e2c5f80d..4d6b335474 100644 + public function guessMaxLength(string $class, string $property): ?Guess\ValueGuess; /** -@@ -50,4 +50,4 @@ interface FormTypeGuesserInterface +@@ -43,4 +43,4 @@ interface FormTypeGuesserInterface * @return Guess\ValueGuess|null */ - public function guessPattern(string $class, string $property); + public function guessPattern(string $class, string $property): ?Guess\ValueGuess; } diff --git a/src/Symfony/Component/Form/FormTypeInterface.php b/src/Symfony/Component/Form/FormTypeInterface.php -index 0c586d3f71..6c625cf403 100644 --- a/src/Symfony/Component/Form/FormTypeInterface.php +++ b/src/Symfony/Component/Form/FormTypeInterface.php @@ -31,5 +31,5 @@ interface FormTypeInterface @@ -7225,7 +6839,6 @@ index 0c586d3f71..6c625cf403 100644 + public function getParent(): ?string; } diff --git a/src/Symfony/Component/Form/FormView.php b/src/Symfony/Component/Form/FormView.php -index e04fa13b09..231b75810e 100644 --- a/src/Symfony/Component/Form/FormView.php +++ b/src/Symfony/Component/Form/FormView.php @@ -96,5 +96,5 @@ class FormView implements \ArrayAccess, \IteratorAggregate, \Countable @@ -7236,7 +6849,6 @@ index e04fa13b09..231b75810e 100644 { $this->methodRendered = true; diff --git a/src/Symfony/Component/Form/NativeRequestHandler.php b/src/Symfony/Component/Form/NativeRequestHandler.php -index 11c4d4d9c0..a09361d59a 100644 --- a/src/Symfony/Component/Form/NativeRequestHandler.php +++ b/src/Symfony/Component/Form/NativeRequestHandler.php @@ -45,5 +45,5 @@ class NativeRequestHandler implements RequestHandlerInterface @@ -7247,7 +6859,6 @@ index 11c4d4d9c0..a09361d59a 100644 { if (null !== $request) { diff --git a/src/Symfony/Component/Form/RequestHandlerInterface.php b/src/Symfony/Component/Form/RequestHandlerInterface.php -index 39fd458ee4..ccd77ccecc 100644 --- a/src/Symfony/Component/Form/RequestHandlerInterface.php +++ b/src/Symfony/Component/Form/RequestHandlerInterface.php @@ -24,5 +24,5 @@ interface RequestHandlerInterface @@ -7258,7 +6869,6 @@ index 39fd458ee4..ccd77ccecc 100644 /** diff --git a/src/Symfony/Component/Form/ResolvedFormType.php b/src/Symfony/Component/Form/ResolvedFormType.php -index f05db1533b..0e67c63c66 100644 --- a/src/Symfony/Component/Form/ResolvedFormType.php +++ b/src/Symfony/Component/Form/ResolvedFormType.php @@ -96,5 +96,5 @@ class ResolvedFormType implements ResolvedFormTypeInterface @@ -7283,7 +6893,6 @@ index f05db1533b..0e67c63c66 100644 { $this->parent?->finishView($view, $form, $options); diff --git a/src/Symfony/Component/Form/ResolvedFormTypeInterface.php b/src/Symfony/Component/Form/ResolvedFormTypeInterface.php -index e0b96a5ac3..7982e0cab3 100644 --- a/src/Symfony/Component/Form/ResolvedFormTypeInterface.php +++ b/src/Symfony/Component/Form/ResolvedFormTypeInterface.php @@ -60,5 +60,5 @@ interface ResolvedFormTypeInterface @@ -7308,7 +6917,6 @@ index e0b96a5ac3..7982e0cab3 100644 /** diff --git a/src/Symfony/Component/HttpClient/CachingHttpClient.php b/src/Symfony/Component/HttpClient/CachingHttpClient.php -index 0b6e495806..8cef2cad7c 100644 --- a/src/Symfony/Component/HttpClient/CachingHttpClient.php +++ b/src/Symfony/Component/HttpClient/CachingHttpClient.php @@ -140,5 +140,5 @@ class CachingHttpClient implements HttpClientInterface, ResetInterface @@ -7319,7 +6927,6 @@ index 0b6e495806..8cef2cad7c 100644 { if ($this->client instanceof ResetInterface) { diff --git a/src/Symfony/Component/HttpClient/DecoratorTrait.php b/src/Symfony/Component/HttpClient/DecoratorTrait.php -index 472437e465..1dfe39146b 100644 --- a/src/Symfony/Component/HttpClient/DecoratorTrait.php +++ b/src/Symfony/Component/HttpClient/DecoratorTrait.php @@ -52,5 +52,5 @@ trait DecoratorTrait @@ -7330,7 +6937,6 @@ index 472437e465..1dfe39146b 100644 { if ($this->client instanceof ResetInterface) { diff --git a/src/Symfony/Component/HttpClient/HttpClientTrait.php b/src/Symfony/Component/HttpClient/HttpClientTrait.php -index 3364d32acd..1b990e5a5a 100644 --- a/src/Symfony/Component/HttpClient/HttpClientTrait.php +++ b/src/Symfony/Component/HttpClient/HttpClientTrait.php @@ -679,5 +679,5 @@ trait HttpClientTrait @@ -7341,7 +6947,6 @@ index 3364d32acd..1b990e5a5a 100644 { $result = ''; diff --git a/src/Symfony/Component/HttpClient/MockHttpClient.php b/src/Symfony/Component/HttpClient/MockHttpClient.php -index 5d8a2dccff..300c56dc6d 100644 --- a/src/Symfony/Component/HttpClient/MockHttpClient.php +++ b/src/Symfony/Component/HttpClient/MockHttpClient.php @@ -110,5 +110,5 @@ class MockHttpClient implements HttpClientInterface, ResetInterface @@ -7352,7 +6957,6 @@ index 5d8a2dccff..300c56dc6d 100644 { $this->requestsCount = 0; diff --git a/src/Symfony/Component/HttpClient/ScopingHttpClient.php b/src/Symfony/Component/HttpClient/ScopingHttpClient.php -index a87171d2ca..cec8a6f027 100644 --- a/src/Symfony/Component/HttpClient/ScopingHttpClient.php +++ b/src/Symfony/Component/HttpClient/ScopingHttpClient.php @@ -97,5 +97,5 @@ class ScopingHttpClient implements HttpClientInterface, ResetInterface, LoggerAw @@ -7363,7 +6967,6 @@ index a87171d2ca..cec8a6f027 100644 { if ($this->client instanceof ResetInterface) { diff --git a/src/Symfony/Component/HttpFoundation/BinaryFileResponse.php b/src/Symfony/Component/HttpFoundation/BinaryFileResponse.php -index cd716e590e..68a0479ef4 100644 --- a/src/Symfony/Component/HttpFoundation/BinaryFileResponse.php +++ b/src/Symfony/Component/HttpFoundation/BinaryFileResponse.php @@ -362,5 +362,5 @@ class BinaryFileResponse extends Response @@ -7374,7 +6977,6 @@ index cd716e590e..68a0479ef4 100644 { self::$trustXSendfileTypeHeader = true; diff --git a/src/Symfony/Component/HttpFoundation/ExpressionRequestMatcher.php b/src/Symfony/Component/HttpFoundation/ExpressionRequestMatcher.php -index fe65e920d9..6a78e6e779 100644 --- a/src/Symfony/Component/HttpFoundation/ExpressionRequestMatcher.php +++ b/src/Symfony/Component/HttpFoundation/ExpressionRequestMatcher.php @@ -33,5 +33,5 @@ class ExpressionRequestMatcher extends RequestMatcher @@ -7385,7 +6987,6 @@ index fe65e920d9..6a78e6e779 100644 { $this->language = $language; diff --git a/src/Symfony/Component/HttpFoundation/FileBag.php b/src/Symfony/Component/HttpFoundation/FileBag.php -index b74a02e2e1..51b4f7f1c3 100644 --- a/src/Symfony/Component/HttpFoundation/FileBag.php +++ b/src/Symfony/Component/HttpFoundation/FileBag.php @@ -35,5 +35,5 @@ class FileBag extends ParameterBag @@ -7410,7 +7011,6 @@ index b74a02e2e1..51b4f7f1c3 100644 { foreach ($files as $key => $file) { diff --git a/src/Symfony/Component/HttpFoundation/HeaderBag.php b/src/Symfony/Component/HttpFoundation/HeaderBag.php -index c49a239726..440f3297de 100644 --- a/src/Symfony/Component/HttpFoundation/HeaderBag.php +++ b/src/Symfony/Component/HttpFoundation/HeaderBag.php @@ -90,5 +90,5 @@ class HeaderBag implements \IteratorAggregate, \Countable @@ -7463,7 +7063,6 @@ index c49a239726..440f3297de 100644 { ksort($this->cacheControl); diff --git a/src/Symfony/Component/HttpFoundation/ParameterBag.php b/src/Symfony/Component/HttpFoundation/ParameterBag.php -index 9d7012de35..545339d4ef 100644 --- a/src/Symfony/Component/HttpFoundation/ParameterBag.php +++ b/src/Symfony/Component/HttpFoundation/ParameterBag.php @@ -64,5 +64,5 @@ class ParameterBag implements \IteratorAggregate, \Countable @@ -7495,7 +7094,6 @@ index 9d7012de35..545339d4ef 100644 { unset($this->parameters[$key]); diff --git a/src/Symfony/Component/HttpFoundation/Request.php b/src/Symfony/Component/HttpFoundation/Request.php -index 0bef6f8d70..ca99fd9dad 100644 --- a/src/Symfony/Component/HttpFoundation/Request.php +++ b/src/Symfony/Component/HttpFoundation/Request.php @@ -269,5 +269,5 @@ class Request @@ -7597,7 +7195,6 @@ index 0bef6f8d70..ca99fd9dad 100644 { static::$formats = [ diff --git a/src/Symfony/Component/HttpFoundation/RequestMatcher.php b/src/Symfony/Component/HttpFoundation/RequestMatcher.php -index 8c5f1d8134..fdd3a666e9 100644 --- a/src/Symfony/Component/HttpFoundation/RequestMatcher.php +++ b/src/Symfony/Component/HttpFoundation/RequestMatcher.php @@ -73,5 +73,5 @@ class RequestMatcher implements RequestMatcherInterface @@ -7657,7 +7254,6 @@ index 8c5f1d8134..fdd3a666e9 100644 { $this->attributes[$key] = $regexp; diff --git a/src/Symfony/Component/HttpFoundation/RequestStack.php b/src/Symfony/Component/HttpFoundation/RequestStack.php -index 5aa8ba7934..80742b0764 100644 --- a/src/Symfony/Component/HttpFoundation/RequestStack.php +++ b/src/Symfony/Component/HttpFoundation/RequestStack.php @@ -35,5 +35,5 @@ class RequestStack @@ -7668,7 +7264,6 @@ index 5aa8ba7934..80742b0764 100644 { $this->requests[] = $request; diff --git a/src/Symfony/Component/HttpFoundation/ResponseHeaderBag.php b/src/Symfony/Component/HttpFoundation/ResponseHeaderBag.php -index 10450ca5e2..3e034007fb 100644 --- a/src/Symfony/Component/HttpFoundation/ResponseHeaderBag.php +++ b/src/Symfony/Component/HttpFoundation/ResponseHeaderBag.php @@ -59,5 +59,5 @@ class ResponseHeaderBag extends HeaderBag @@ -7728,7 +7323,6 @@ index 10450ca5e2..3e034007fb 100644 { return HeaderUtils::makeDisposition($disposition, $filename, $filenameFallback); diff --git a/src/Symfony/Component/HttpFoundation/Session/Attribute/AttributeBag.php b/src/Symfony/Component/HttpFoundation/Session/Attribute/AttributeBag.php -index ad5a6590a5..cf296c1d6d 100644 --- a/src/Symfony/Component/HttpFoundation/Session/Attribute/AttributeBag.php +++ b/src/Symfony/Component/HttpFoundation/Session/Attribute/AttributeBag.php @@ -40,5 +40,5 @@ class AttributeBag implements AttributeBagInterface, \IteratorAggregate, \Counta @@ -7760,7 +7354,6 @@ index ad5a6590a5..cf296c1d6d 100644 { $this->attributes = []; diff --git a/src/Symfony/Component/HttpFoundation/Session/Attribute/AttributeBagInterface.php b/src/Symfony/Component/HttpFoundation/Session/Attribute/AttributeBagInterface.php -index e8cd0b5a4d..27eca96974 100644 --- a/src/Symfony/Component/HttpFoundation/Session/Attribute/AttributeBagInterface.php +++ b/src/Symfony/Component/HttpFoundation/Session/Attribute/AttributeBagInterface.php @@ -36,5 +36,5 @@ interface AttributeBagInterface extends SessionBagInterface @@ -7778,7 +7371,6 @@ index e8cd0b5a4d..27eca96974 100644 /** diff --git a/src/Symfony/Component/HttpFoundation/Session/Flash/AutoExpireFlashBag.php b/src/Symfony/Component/HttpFoundation/Session/Flash/AutoExpireFlashBag.php -index 80bbeda0f8..c4d461cd3a 100644 --- a/src/Symfony/Component/HttpFoundation/Session/Flash/AutoExpireFlashBag.php +++ b/src/Symfony/Component/HttpFoundation/Session/Flash/AutoExpireFlashBag.php @@ -39,5 +39,5 @@ class AutoExpireFlashBag implements FlashBagInterface @@ -7817,7 +7409,6 @@ index 80bbeda0f8..c4d461cd3a 100644 { $this->flashes['new'][$type] = (array) $messages; diff --git a/src/Symfony/Component/HttpFoundation/Session/Flash/FlashBag.php b/src/Symfony/Component/HttpFoundation/Session/Flash/FlashBag.php -index 659d59d186..3da6888cec 100644 --- a/src/Symfony/Component/HttpFoundation/Session/Flash/FlashBag.php +++ b/src/Symfony/Component/HttpFoundation/Session/Flash/FlashBag.php @@ -39,5 +39,5 @@ class FlashBag implements FlashBagInterface @@ -7856,7 +7447,6 @@ index 659d59d186..3da6888cec 100644 { $this->flashes = $messages; diff --git a/src/Symfony/Component/HttpFoundation/Session/Flash/FlashBagInterface.php b/src/Symfony/Component/HttpFoundation/Session/Flash/FlashBagInterface.php -index bbcf7f8b7d..6ef5b35e7d 100644 --- a/src/Symfony/Component/HttpFoundation/Session/Flash/FlashBagInterface.php +++ b/src/Symfony/Component/HttpFoundation/Session/Flash/FlashBagInterface.php @@ -26,5 +26,5 @@ interface FlashBagInterface extends SessionBagInterface @@ -7881,7 +7471,6 @@ index bbcf7f8b7d..6ef5b35e7d 100644 /** diff --git a/src/Symfony/Component/HttpFoundation/Session/Session.php b/src/Symfony/Component/HttpFoundation/Session/Session.php -index b45be2f8c3..ce73fdb85f 100644 --- a/src/Symfony/Component/HttpFoundation/Session/Session.php +++ b/src/Symfony/Component/HttpFoundation/Session/Session.php @@ -73,5 +73,5 @@ class Session implements FlashBagAwareSessionInterface, \IteratorAggregate, \Cou @@ -7934,7 +7523,6 @@ index b45be2f8c3..ce73fdb85f 100644 { $this->storage->registerBag(new SessionBagProxy($bag, $this->data, $this->usageIndex, $this->usageReporter)); diff --git a/src/Symfony/Component/HttpFoundation/Session/SessionBagInterface.php b/src/Symfony/Component/HttpFoundation/Session/SessionBagInterface.php -index e1c2505549..d88b64acdd 100644 --- a/src/Symfony/Component/HttpFoundation/Session/SessionBagInterface.php +++ b/src/Symfony/Component/HttpFoundation/Session/SessionBagInterface.php @@ -29,5 +29,5 @@ interface SessionBagInterface @@ -7945,7 +7533,6 @@ index e1c2505549..d88b64acdd 100644 /** diff --git a/src/Symfony/Component/HttpFoundation/Session/SessionInterface.php b/src/Symfony/Component/HttpFoundation/Session/SessionInterface.php -index 534883d2d2..1240e36f74 100644 --- a/src/Symfony/Component/HttpFoundation/Session/SessionInterface.php +++ b/src/Symfony/Component/HttpFoundation/Session/SessionInterface.php @@ -38,5 +38,5 @@ interface SessionInterface @@ -7998,7 +7585,6 @@ index 534883d2d2..1240e36f74 100644 /** diff --git a/src/Symfony/Component/HttpFoundation/Session/Storage/Handler/PdoSessionHandler.php b/src/Symfony/Component/HttpFoundation/Session/Storage/Handler/PdoSessionHandler.php -index a40a7bc77b..170918d832 100644 --- a/src/Symfony/Component/HttpFoundation/Session/Storage/Handler/PdoSessionHandler.php +++ b/src/Symfony/Component/HttpFoundation/Session/Storage/Handler/PdoSessionHandler.php @@ -242,5 +242,5 @@ class PdoSessionHandler extends AbstractSessionHandler @@ -8009,7 +7595,6 @@ index a40a7bc77b..170918d832 100644 { // connect if we are not yet diff --git a/src/Symfony/Component/HttpFoundation/Session/Storage/MetadataBag.php b/src/Symfony/Component/HttpFoundation/Session/Storage/MetadataBag.php -index ebe4b748ad..059a6b5ac8 100644 --- a/src/Symfony/Component/HttpFoundation/Session/Storage/MetadataBag.php +++ b/src/Symfony/Component/HttpFoundation/Session/Storage/MetadataBag.php @@ -55,5 +55,5 @@ class MetadataBag implements SessionBagInterface @@ -8034,7 +7619,6 @@ index ebe4b748ad..059a6b5ac8 100644 { $this->name = $name; diff --git a/src/Symfony/Component/HttpFoundation/Session/Storage/MockArraySessionStorage.php b/src/Symfony/Component/HttpFoundation/Session/Storage/MockArraySessionStorage.php -index d30b56d691..0f002902bd 100644 --- a/src/Symfony/Component/HttpFoundation/Session/Storage/MockArraySessionStorage.php +++ b/src/Symfony/Component/HttpFoundation/Session/Storage/MockArraySessionStorage.php @@ -72,5 +72,5 @@ class MockArraySessionStorage implements SessionStorageInterface @@ -8094,7 +7678,6 @@ index d30b56d691..0f002902bd 100644 { $bags = array_merge($this->bags, [$this->metadataBag]); diff --git a/src/Symfony/Component/HttpFoundation/Session/Storage/MockFileSessionStorage.php b/src/Symfony/Component/HttpFoundation/Session/Storage/MockFileSessionStorage.php -index 95f69f2e13..971b890f0f 100644 --- a/src/Symfony/Component/HttpFoundation/Session/Storage/MockFileSessionStorage.php +++ b/src/Symfony/Component/HttpFoundation/Session/Storage/MockFileSessionStorage.php @@ -77,5 +77,5 @@ class MockFileSessionStorage extends MockArraySessionStorage @@ -8105,7 +7688,6 @@ index 95f69f2e13..971b890f0f 100644 { if (!$this->started) { diff --git a/src/Symfony/Component/HttpFoundation/Session/Storage/NativeSessionStorage.php b/src/Symfony/Component/HttpFoundation/Session/Storage/NativeSessionStorage.php -index 7c6b6f9296..0b63abb810 100644 --- a/src/Symfony/Component/HttpFoundation/Session/Storage/NativeSessionStorage.php +++ b/src/Symfony/Component/HttpFoundation/Session/Storage/NativeSessionStorage.php @@ -187,5 +187,5 @@ class NativeSessionStorage implements SessionStorageInterface @@ -8172,7 +7754,6 @@ index 7c6b6f9296..0b63abb810 100644 { if (null === $session) { diff --git a/src/Symfony/Component/HttpFoundation/Session/Storage/PhpBridgeSessionStorage.php b/src/Symfony/Component/HttpFoundation/Session/Storage/PhpBridgeSessionStorage.php -index 28cb3c3d05..fc5452c5b0 100644 --- a/src/Symfony/Component/HttpFoundation/Session/Storage/PhpBridgeSessionStorage.php +++ b/src/Symfony/Component/HttpFoundation/Session/Storage/PhpBridgeSessionStorage.php @@ -45,5 +45,5 @@ class PhpBridgeSessionStorage extends NativeSessionStorage @@ -8183,7 +7764,6 @@ index 28cb3c3d05..fc5452c5b0 100644 { // clear out the bags and nothing else that may be set diff --git a/src/Symfony/Component/HttpFoundation/Session/Storage/Proxy/AbstractProxy.php b/src/Symfony/Component/HttpFoundation/Session/Storage/Proxy/AbstractProxy.php -index 2fcd06b10b..4981f75360 100644 --- a/src/Symfony/Component/HttpFoundation/Session/Storage/Proxy/AbstractProxy.php +++ b/src/Symfony/Component/HttpFoundation/Session/Storage/Proxy/AbstractProxy.php @@ -76,5 +76,5 @@ abstract class AbstractProxy @@ -8201,7 +7781,6 @@ index 2fcd06b10b..4981f75360 100644 { if ($this->isActive()) { diff --git a/src/Symfony/Component/HttpFoundation/Session/Storage/SessionStorageInterface.php b/src/Symfony/Component/HttpFoundation/Session/Storage/SessionStorageInterface.php -index ed2189e4e7..28e90cdcf9 100644 --- a/src/Symfony/Component/HttpFoundation/Session/Storage/SessionStorageInterface.php +++ b/src/Symfony/Component/HttpFoundation/Session/Storage/SessionStorageInterface.php @@ -44,5 +44,5 @@ interface SessionStorageInterface @@ -8240,7 +7819,6 @@ index ed2189e4e7..28e90cdcf9 100644 public function getMetadataBag(): MetadataBag; diff --git a/src/Symfony/Component/HttpKernel/Bundle/Bundle.php b/src/Symfony/Component/HttpKernel/Bundle/Bundle.php -index 2ddf55f2cb..52049a92b4 100644 --- a/src/Symfony/Component/HttpKernel/Bundle/Bundle.php +++ b/src/Symfony/Component/HttpKernel/Bundle/Bundle.php @@ -35,5 +35,5 @@ abstract class Bundle implements BundleInterface @@ -8272,7 +7850,6 @@ index 2ddf55f2cb..52049a92b4 100644 { } diff --git a/src/Symfony/Component/HttpKernel/Bundle/BundleInterface.php b/src/Symfony/Component/HttpKernel/Bundle/BundleInterface.php -index 02cb9641db..abe408eb24 100644 --- a/src/Symfony/Component/HttpKernel/Bundle/BundleInterface.php +++ b/src/Symfony/Component/HttpKernel/Bundle/BundleInterface.php @@ -28,5 +28,5 @@ interface BundleInterface extends ContainerAwareInterface @@ -8297,7 +7874,6 @@ index 02cb9641db..abe408eb24 100644 /** diff --git a/src/Symfony/Component/HttpKernel/CacheClearer/CacheClearerInterface.php b/src/Symfony/Component/HttpKernel/CacheClearer/CacheClearerInterface.php -index 5ca4265624..1cb3611f8d 100644 --- a/src/Symfony/Component/HttpKernel/CacheClearer/CacheClearerInterface.php +++ b/src/Symfony/Component/HttpKernel/CacheClearer/CacheClearerInterface.php @@ -24,4 +24,4 @@ interface CacheClearerInterface @@ -8307,7 +7883,6 @@ index 5ca4265624..1cb3611f8d 100644 + public function clear(string $cacheDir): void; } diff --git a/src/Symfony/Component/HttpKernel/CacheClearer/Psr6CacheClearer.php b/src/Symfony/Component/HttpKernel/CacheClearer/Psr6CacheClearer.php -index 3c99b74af3..fdb68feb2c 100644 --- a/src/Symfony/Component/HttpKernel/CacheClearer/Psr6CacheClearer.php +++ b/src/Symfony/Component/HttpKernel/CacheClearer/Psr6CacheClearer.php @@ -61,5 +61,5 @@ class Psr6CacheClearer implements CacheClearerInterface @@ -8318,7 +7893,6 @@ index 3c99b74af3..fdb68feb2c 100644 { foreach ($this->pools as $pool) { diff --git a/src/Symfony/Component/HttpKernel/CacheWarmer/CacheWarmer.php b/src/Symfony/Component/HttpKernel/CacheWarmer/CacheWarmer.php -index f940ba4a72..5178dc96bb 100644 --- a/src/Symfony/Component/HttpKernel/CacheWarmer/CacheWarmer.php +++ b/src/Symfony/Component/HttpKernel/CacheWarmer/CacheWarmer.php @@ -22,5 +22,5 @@ abstract class CacheWarmer implements CacheWarmerInterface @@ -8329,7 +7903,6 @@ index f940ba4a72..5178dc96bb 100644 { $tmpFile = @tempnam(\dirname($file), basename($file)); diff --git a/src/Symfony/Component/HttpKernel/CacheWarmer/CacheWarmerInterface.php b/src/Symfony/Component/HttpKernel/CacheWarmer/CacheWarmerInterface.php -index 1f1740b7e2..22dc8ea26a 100644 --- a/src/Symfony/Component/HttpKernel/CacheWarmer/CacheWarmerInterface.php +++ b/src/Symfony/Component/HttpKernel/CacheWarmer/CacheWarmerInterface.php @@ -29,4 +29,4 @@ interface CacheWarmerInterface extends WarmableInterface @@ -8339,7 +7912,6 @@ index 1f1740b7e2..22dc8ea26a 100644 + public function isOptional(): bool; } diff --git a/src/Symfony/Component/HttpKernel/CacheWarmer/WarmableInterface.php b/src/Symfony/Component/HttpKernel/CacheWarmer/WarmableInterface.php -index 2f442cb536..d98909cfae 100644 --- a/src/Symfony/Component/HttpKernel/CacheWarmer/WarmableInterface.php +++ b/src/Symfony/Component/HttpKernel/CacheWarmer/WarmableInterface.php @@ -24,4 +24,4 @@ interface WarmableInterface @@ -8349,7 +7921,6 @@ index 2f442cb536..d98909cfae 100644 + public function warmUp(string $cacheDir): array; } diff --git a/src/Symfony/Component/HttpKernel/DataCollector/DataCollector.php b/src/Symfony/Component/HttpKernel/DataCollector/DataCollector.php -index 698ed31397..c5a3eea409 100644 --- a/src/Symfony/Component/HttpKernel/DataCollector/DataCollector.php +++ b/src/Symfony/Component/HttpKernel/DataCollector/DataCollector.php @@ -59,5 +59,5 @@ abstract class DataCollector implements DataCollectorInterface @@ -8360,7 +7931,6 @@ index 698ed31397..c5a3eea409 100644 { $casters = [ diff --git a/src/Symfony/Component/HttpKernel/DataCollector/DataCollectorInterface.php b/src/Symfony/Component/HttpKernel/DataCollector/DataCollectorInterface.php -index 8df94ccb8f..42288d8a02 100644 --- a/src/Symfony/Component/HttpKernel/DataCollector/DataCollectorInterface.php +++ b/src/Symfony/Component/HttpKernel/DataCollector/DataCollectorInterface.php @@ -28,5 +28,5 @@ interface DataCollectorInterface extends ResetInterface @@ -8377,7 +7947,6 @@ index 8df94ccb8f..42288d8a02 100644 + public function getName(): string; } diff --git a/src/Symfony/Component/HttpKernel/DataCollector/LateDataCollectorInterface.php b/src/Symfony/Component/HttpKernel/DataCollector/LateDataCollectorInterface.php -index efa1a4f737..752eb19faf 100644 --- a/src/Symfony/Component/HttpKernel/DataCollector/LateDataCollectorInterface.php +++ b/src/Symfony/Component/HttpKernel/DataCollector/LateDataCollectorInterface.php @@ -24,4 +24,4 @@ interface LateDataCollectorInterface @@ -8387,7 +7956,6 @@ index efa1a4f737..752eb19faf 100644 + public function lateCollect(): void; } diff --git a/src/Symfony/Component/HttpKernel/DataCollector/RequestDataCollector.php b/src/Symfony/Component/HttpKernel/DataCollector/RequestDataCollector.php -index 094683ccce..5582af522e 100644 --- a/src/Symfony/Component/HttpKernel/DataCollector/RequestDataCollector.php +++ b/src/Symfony/Component/HttpKernel/DataCollector/RequestDataCollector.php @@ -199,5 +199,5 @@ class RequestDataCollector extends DataCollector implements EventSubscriberInter @@ -8475,7 +8043,6 @@ index 094683ccce..5582af522e 100644 { return new ParameterBag($this->data['dotenv_vars']->getValue()); diff --git a/src/Symfony/Component/HttpKernel/DataCollector/RouterDataCollector.php b/src/Symfony/Component/HttpKernel/DataCollector/RouterDataCollector.php -index 444138da70..42a3c28b5f 100644 --- a/src/Symfony/Component/HttpKernel/DataCollector/RouterDataCollector.php +++ b/src/Symfony/Component/HttpKernel/DataCollector/RouterDataCollector.php @@ -52,5 +52,5 @@ class RouterDataCollector extends DataCollector @@ -8500,7 +8067,6 @@ index 444138da70..42a3c28b5f 100644 { $this->controllers[$event->getRequest()] = $event->getController(); diff --git a/src/Symfony/Component/HttpKernel/Debug/FileLinkFormatter.php b/src/Symfony/Component/HttpKernel/Debug/FileLinkFormatter.php -index fcb100859f..8bf3ef09d5 100644 --- a/src/Symfony/Component/HttpKernel/Debug/FileLinkFormatter.php +++ b/src/Symfony/Component/HttpKernel/Debug/FileLinkFormatter.php @@ -53,5 +53,5 @@ class FileLinkFormatter @@ -8511,7 +8077,6 @@ index fcb100859f..8bf3ef09d5 100644 { if ($fmt = $this->getFileLinkFormat()) { diff --git a/src/Symfony/Component/HttpKernel/Debug/TraceableEventDispatcher.php b/src/Symfony/Component/HttpKernel/Debug/TraceableEventDispatcher.php -index 4f6c34bc74..c84198c912 100644 --- a/src/Symfony/Component/HttpKernel/Debug/TraceableEventDispatcher.php +++ b/src/Symfony/Component/HttpKernel/Debug/TraceableEventDispatcher.php @@ -27,5 +27,5 @@ class TraceableEventDispatcher extends BaseTraceableEventDispatcher @@ -8529,7 +8094,6 @@ index 4f6c34bc74..c84198c912 100644 { switch ($eventName) { diff --git a/src/Symfony/Component/HttpKernel/DependencyInjection/AddAnnotatedClassesToCachePass.php b/src/Symfony/Component/HttpKernel/DependencyInjection/AddAnnotatedClassesToCachePass.php -index 1924b1ddb0..62c58c8e8b 100644 --- a/src/Symfony/Component/HttpKernel/DependencyInjection/AddAnnotatedClassesToCachePass.php +++ b/src/Symfony/Component/HttpKernel/DependencyInjection/AddAnnotatedClassesToCachePass.php @@ -35,5 +35,5 @@ class AddAnnotatedClassesToCachePass implements CompilerPassInterface @@ -8540,7 +8104,6 @@ index 1924b1ddb0..62c58c8e8b 100644 { $annotatedClasses = []; diff --git a/src/Symfony/Component/HttpKernel/DependencyInjection/ConfigurableExtension.php b/src/Symfony/Component/HttpKernel/DependencyInjection/ConfigurableExtension.php -index 12d468cf04..2ca89c128e 100644 --- a/src/Symfony/Component/HttpKernel/DependencyInjection/ConfigurableExtension.php +++ b/src/Symfony/Component/HttpKernel/DependencyInjection/ConfigurableExtension.php @@ -38,4 +38,4 @@ abstract class ConfigurableExtension extends Extension @@ -8550,7 +8113,6 @@ index 12d468cf04..2ca89c128e 100644 + abstract protected function loadInternal(array $mergedConfig, ContainerBuilder $container): void; } diff --git a/src/Symfony/Component/HttpKernel/DependencyInjection/ControllerArgumentValueResolverPass.php b/src/Symfony/Component/HttpKernel/DependencyInjection/ControllerArgumentValueResolverPass.php -index d3b157418e..8bddae02da 100644 --- a/src/Symfony/Component/HttpKernel/DependencyInjection/ControllerArgumentValueResolverPass.php +++ b/src/Symfony/Component/HttpKernel/DependencyInjection/ControllerArgumentValueResolverPass.php @@ -34,5 +34,5 @@ class ControllerArgumentValueResolverPass implements CompilerPassInterface @@ -8561,7 +8123,6 @@ index d3b157418e..8bddae02da 100644 { if (!$container->hasDefinition('argument_resolver')) { diff --git a/src/Symfony/Component/HttpKernel/DependencyInjection/Extension.php b/src/Symfony/Component/HttpKernel/DependencyInjection/Extension.php -index d72efa1724..ea38e4d301 100644 --- a/src/Symfony/Component/HttpKernel/DependencyInjection/Extension.php +++ b/src/Symfony/Component/HttpKernel/DependencyInjection/Extension.php @@ -38,5 +38,5 @@ abstract class Extension extends BaseExtension @@ -8572,7 +8133,6 @@ index d72efa1724..ea38e4d301 100644 { $this->annotatedClasses = array_merge($this->annotatedClasses, $annotatedClasses); diff --git a/src/Symfony/Component/HttpKernel/DependencyInjection/FragmentRendererPass.php b/src/Symfony/Component/HttpKernel/DependencyInjection/FragmentRendererPass.php -index f41d58b81b..cb2b5c484c 100644 --- a/src/Symfony/Component/HttpKernel/DependencyInjection/FragmentRendererPass.php +++ b/src/Symfony/Component/HttpKernel/DependencyInjection/FragmentRendererPass.php @@ -29,5 +29,5 @@ class FragmentRendererPass implements CompilerPassInterface @@ -8583,7 +8143,6 @@ index f41d58b81b..cb2b5c484c 100644 { if (!$container->hasDefinition('fragment.handler')) { diff --git a/src/Symfony/Component/HttpKernel/DependencyInjection/LoggerPass.php b/src/Symfony/Component/HttpKernel/DependencyInjection/LoggerPass.php -index 2b6cb00793..6bf9e49796 100644 --- a/src/Symfony/Component/HttpKernel/DependencyInjection/LoggerPass.php +++ b/src/Symfony/Component/HttpKernel/DependencyInjection/LoggerPass.php @@ -29,5 +29,5 @@ class LoggerPass implements CompilerPassInterface @@ -8594,7 +8153,6 @@ index 2b6cb00793..6bf9e49796 100644 { $container->setAlias(LoggerInterface::class, 'logger') diff --git a/src/Symfony/Component/HttpKernel/DependencyInjection/MergeExtensionConfigurationPass.php b/src/Symfony/Component/HttpKernel/DependencyInjection/MergeExtensionConfigurationPass.php -index cec23e1970..946d9f6802 100644 --- a/src/Symfony/Component/HttpKernel/DependencyInjection/MergeExtensionConfigurationPass.php +++ b/src/Symfony/Component/HttpKernel/DependencyInjection/MergeExtensionConfigurationPass.php @@ -35,5 +35,5 @@ class MergeExtensionConfigurationPass extends BaseMergeExtensionConfigurationPas @@ -8605,7 +8163,6 @@ index cec23e1970..946d9f6802 100644 { foreach ($this->extensions as $extension) { diff --git a/src/Symfony/Component/HttpKernel/DependencyInjection/RegisterControllerArgumentLocatorsPass.php b/src/Symfony/Component/HttpKernel/DependencyInjection/RegisterControllerArgumentLocatorsPass.php -index d0e05340d8..18b5beb201 100644 --- a/src/Symfony/Component/HttpKernel/DependencyInjection/RegisterControllerArgumentLocatorsPass.php +++ b/src/Symfony/Component/HttpKernel/DependencyInjection/RegisterControllerArgumentLocatorsPass.php @@ -37,5 +37,5 @@ class RegisterControllerArgumentLocatorsPass implements CompilerPassInterface @@ -8616,7 +8173,6 @@ index d0e05340d8..18b5beb201 100644 { if (!$container->hasDefinition('argument_resolver.service') && !$container->hasDefinition('argument_resolver.not_tagged_controller')) { diff --git a/src/Symfony/Component/HttpKernel/DependencyInjection/RegisterLocaleAwareServicesPass.php b/src/Symfony/Component/HttpKernel/DependencyInjection/RegisterLocaleAwareServicesPass.php -index 2a01365bd3..d321073903 100644 --- a/src/Symfony/Component/HttpKernel/DependencyInjection/RegisterLocaleAwareServicesPass.php +++ b/src/Symfony/Component/HttpKernel/DependencyInjection/RegisterLocaleAwareServicesPass.php @@ -27,5 +27,5 @@ class RegisterLocaleAwareServicesPass implements CompilerPassInterface @@ -8627,7 +8183,6 @@ index 2a01365bd3..d321073903 100644 { if (!$container->hasDefinition('locale_aware_listener')) { diff --git a/src/Symfony/Component/HttpKernel/DependencyInjection/RemoveEmptyControllerArgumentLocatorsPass.php b/src/Symfony/Component/HttpKernel/DependencyInjection/RemoveEmptyControllerArgumentLocatorsPass.php -index 7a21fe0e59..1a87f4f7e5 100644 --- a/src/Symfony/Component/HttpKernel/DependencyInjection/RemoveEmptyControllerArgumentLocatorsPass.php +++ b/src/Symfony/Component/HttpKernel/DependencyInjection/RemoveEmptyControllerArgumentLocatorsPass.php @@ -25,5 +25,5 @@ class RemoveEmptyControllerArgumentLocatorsPass implements CompilerPassInterface @@ -8638,7 +8193,6 @@ index 7a21fe0e59..1a87f4f7e5 100644 { $controllerLocator = $container->findDefinition('argument_resolver.controller_locator'); diff --git a/src/Symfony/Component/HttpKernel/DependencyInjection/ResettableServicePass.php b/src/Symfony/Component/HttpKernel/DependencyInjection/ResettableServicePass.php -index da9f8d6320..cfef739f87 100644 --- a/src/Symfony/Component/HttpKernel/DependencyInjection/ResettableServicePass.php +++ b/src/Symfony/Component/HttpKernel/DependencyInjection/ResettableServicePass.php @@ -27,5 +27,5 @@ class ResettableServicePass implements CompilerPassInterface @@ -8649,7 +8203,6 @@ index da9f8d6320..cfef739f87 100644 { if (!$container->has('services_resetter')) { diff --git a/src/Symfony/Component/HttpKernel/Event/RequestEvent.php b/src/Symfony/Component/HttpKernel/Event/RequestEvent.php -index b81a79b780..e05ed715e2 100644 --- a/src/Symfony/Component/HttpKernel/Event/RequestEvent.php +++ b/src/Symfony/Component/HttpKernel/Event/RequestEvent.php @@ -40,5 +40,5 @@ class RequestEvent extends KernelEvent @@ -8660,7 +8213,6 @@ index b81a79b780..e05ed715e2 100644 { $this->response = $response; diff --git a/src/Symfony/Component/HttpKernel/EventListener/CacheAttributeListener.php b/src/Symfony/Component/HttpKernel/EventListener/CacheAttributeListener.php -index 723e758cd0..f3a5618e3d 100644 --- a/src/Symfony/Component/HttpKernel/EventListener/CacheAttributeListener.php +++ b/src/Symfony/Component/HttpKernel/EventListener/CacheAttributeListener.php @@ -50,5 +50,5 @@ class CacheAttributeListener implements EventSubscriberInterface @@ -8678,7 +8230,6 @@ index 723e758cd0..f3a5618e3d 100644 { $request = $event->getRequest(); diff --git a/src/Symfony/Component/HttpKernel/EventListener/DumpListener.php b/src/Symfony/Component/HttpKernel/EventListener/DumpListener.php -index b10bd37f43..e3a50b3852 100644 --- a/src/Symfony/Component/HttpKernel/EventListener/DumpListener.php +++ b/src/Symfony/Component/HttpKernel/EventListener/DumpListener.php @@ -40,5 +40,5 @@ class DumpListener implements EventSubscriberInterface @@ -8689,7 +8240,6 @@ index b10bd37f43..e3a50b3852 100644 { $cloner = $this->cloner; diff --git a/src/Symfony/Component/HttpKernel/EventListener/ErrorListener.php b/src/Symfony/Component/HttpKernel/EventListener/ErrorListener.php -index cc6936cfda..c4a74bdd93 100644 --- a/src/Symfony/Component/HttpKernel/EventListener/ErrorListener.php +++ b/src/Symfony/Component/HttpKernel/EventListener/ErrorListener.php @@ -55,5 +55,5 @@ class ErrorListener implements EventSubscriberInterface @@ -8714,7 +8264,6 @@ index cc6936cfda..c4a74bdd93 100644 { $e = $event->getRequest()->attributes->get('exception'); diff --git a/src/Symfony/Component/HttpKernel/Exception/HttpException.php b/src/Symfony/Component/HttpKernel/Exception/HttpException.php -index e12abce004..3354a5aebf 100644 --- a/src/Symfony/Component/HttpKernel/Exception/HttpException.php +++ b/src/Symfony/Component/HttpKernel/Exception/HttpException.php @@ -43,5 +43,5 @@ class HttpException extends \RuntimeException implements HttpExceptionInterface @@ -8725,7 +8274,6 @@ index e12abce004..3354a5aebf 100644 { $this->headers = $headers; diff --git a/src/Symfony/Component/HttpKernel/Fragment/FragmentHandler.php b/src/Symfony/Component/HttpKernel/Fragment/FragmentHandler.php -index 62b21e6d4e..67984f7e75 100644 --- a/src/Symfony/Component/HttpKernel/Fragment/FragmentHandler.php +++ b/src/Symfony/Component/HttpKernel/Fragment/FragmentHandler.php @@ -52,5 +52,5 @@ class FragmentHandler @@ -8736,7 +8284,6 @@ index 62b21e6d4e..67984f7e75 100644 { $this->renderers[$renderer->getName()] = $renderer; diff --git a/src/Symfony/Component/HttpKernel/Fragment/InlineFragmentRenderer.php b/src/Symfony/Component/HttpKernel/Fragment/InlineFragmentRenderer.php -index d563182f96..2a041ab414 100644 --- a/src/Symfony/Component/HttpKernel/Fragment/InlineFragmentRenderer.php +++ b/src/Symfony/Component/HttpKernel/Fragment/InlineFragmentRenderer.php @@ -107,5 +107,5 @@ class InlineFragmentRenderer extends RoutableFragmentRenderer @@ -8747,7 +8294,6 @@ index d563182f96..2a041ab414 100644 { $cookies = $request->cookies->all(); diff --git a/src/Symfony/Component/HttpKernel/Fragment/RoutableFragmentRenderer.php b/src/Symfony/Component/HttpKernel/Fragment/RoutableFragmentRenderer.php -index 47027233a7..2be5cfc7de 100644 --- a/src/Symfony/Component/HttpKernel/Fragment/RoutableFragmentRenderer.php +++ b/src/Symfony/Component/HttpKernel/Fragment/RoutableFragmentRenderer.php @@ -35,5 +35,5 @@ abstract class RoutableFragmentRenderer implements FragmentRendererInterface @@ -8758,7 +8304,6 @@ index 47027233a7..2be5cfc7de 100644 { $this->fragmentPath = $path; diff --git a/src/Symfony/Component/HttpKernel/HttpCache/AbstractSurrogate.php b/src/Symfony/Component/HttpKernel/HttpCache/AbstractSurrogate.php -index 95518bed2b..2f7d5ee3b5 100644 --- a/src/Symfony/Component/HttpKernel/HttpCache/AbstractSurrogate.php +++ b/src/Symfony/Component/HttpKernel/HttpCache/AbstractSurrogate.php @@ -63,5 +63,5 @@ abstract class AbstractSurrogate implements SurrogateInterface @@ -8776,7 +8321,6 @@ index 95518bed2b..2f7d5ee3b5 100644 { if (!$response->headers->has('Surrogate-Control')) { diff --git a/src/Symfony/Component/HttpKernel/HttpCache/Esi.php b/src/Symfony/Component/HttpKernel/HttpCache/Esi.php -index 5db840a802..c16398a8ea 100644 --- a/src/Symfony/Component/HttpKernel/HttpCache/Esi.php +++ b/src/Symfony/Component/HttpKernel/HttpCache/Esi.php @@ -36,5 +36,5 @@ class Esi extends AbstractSurrogate @@ -8787,7 +8331,6 @@ index 5db840a802..c16398a8ea 100644 { if (str_contains($response->getContent(), 'surrogate?->needsParsing($response)) { diff --git a/src/Symfony/Component/HttpKernel/HttpCache/ResponseCacheStrategy.php b/src/Symfony/Component/HttpKernel/HttpCache/ResponseCacheStrategy.php -index 57b5d21961..6ec129beb9 100644 --- a/src/Symfony/Component/HttpKernel/HttpCache/ResponseCacheStrategy.php +++ b/src/Symfony/Component/HttpKernel/HttpCache/ResponseCacheStrategy.php @@ -58,5 +58,5 @@ class ResponseCacheStrategy implements ResponseCacheStrategyInterface @@ -8837,7 +8379,6 @@ index 57b5d21961..6ec129beb9 100644 { // if we have no embedded Response, do nothing diff --git a/src/Symfony/Component/HttpKernel/HttpCache/ResponseCacheStrategyInterface.php b/src/Symfony/Component/HttpKernel/HttpCache/ResponseCacheStrategyInterface.php -index 33c8bd9412..8fe6df2512 100644 --- a/src/Symfony/Component/HttpKernel/HttpCache/ResponseCacheStrategyInterface.php +++ b/src/Symfony/Component/HttpKernel/HttpCache/ResponseCacheStrategyInterface.php @@ -31,5 +31,5 @@ interface ResponseCacheStrategyInterface @@ -8854,7 +8395,6 @@ index 33c8bd9412..8fe6df2512 100644 + public function update(Response $response): void; } diff --git a/src/Symfony/Component/HttpKernel/HttpCache/Ssi.php b/src/Symfony/Component/HttpKernel/HttpCache/Ssi.php -index b17c90ac60..86008d6933 100644 --- a/src/Symfony/Component/HttpKernel/HttpCache/Ssi.php +++ b/src/Symfony/Component/HttpKernel/HttpCache/Ssi.php @@ -30,5 +30,5 @@ class Ssi extends AbstractSurrogate @@ -8865,7 +8405,6 @@ index b17c90ac60..86008d6933 100644 { if (str_contains($response->getContent(), '