From 2b0f9d6bd93be43a2bf6b76e09eb6f0d80dc3fb6 Mon Sep 17 00:00:00 2001 From: Nicolas Grekas Date: Tue, 17 Dec 2019 13:15:16 +0100 Subject: [PATCH] [DI] revert reordering of ResolveFactoryClassPass and AutowireRequiredMethodsPass in PassConfig --- .../Component/DependencyInjection/Compiler/PassConfig.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Symfony/Component/DependencyInjection/Compiler/PassConfig.php b/src/Symfony/Component/DependencyInjection/Compiler/PassConfig.php index 744645dd70..2ec2e96336 100644 --- a/src/Symfony/Component/DependencyInjection/Compiler/PassConfig.php +++ b/src/Symfony/Component/DependencyInjection/Compiler/PassConfig.php @@ -53,13 +53,13 @@ class PassConfig new ResolveChildDefinitionsPass(), new RegisterServiceSubscribersPass(), new ResolveParameterPlaceHoldersPass(false), + new ResolveFactoryClassPass(), new ResolveNamedArgumentsPass(), + new AutowireRequiredMethodsPass(), new ResolveBindingsPass(), new ServiceLocatorTagPass(), - new CheckDefinitionValidityPass(), new DecoratorServicePass(), - new ResolveFactoryClassPass(), - new AutowireRequiredMethodsPass(), + new CheckDefinitionValidityPass(), new AutowirePass(false), new ResolveTaggedIteratorArgumentPass(), new ResolveServiceSubscribersPass(),