Skip to content

Commit 8150b0f

Browse files
committed
Merge branch '4.4' into 5.3
* 4.4: Fix iterrator in ServiceConfigurator Add Slovak lang translation #41081 [Validator] Add missing thai translation [Translation] Add Burmese translation [FrameworkBundle] Remove translation data_collector BEFORE adding it to profiler
2 parents 9e07ace + a534385 commit 8150b0f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

FrameworkBundle.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,6 +122,7 @@ public function build(ContainerBuilder $container)
122122
$container->addCompilerPass(new RegisterControllerArgumentLocatorsPass());
123123
$container->addCompilerPass(new RemoveEmptyControllerArgumentLocatorsPass(), PassConfig::TYPE_BEFORE_REMOVING);
124124
$container->addCompilerPass(new RoutingResolverPass());
125+
$container->addCompilerPass(new DataCollectorTranslatorPass());
125126
$container->addCompilerPass(new ProfilerPass());
126127
// must be registered before removing private services as some might be listeners/subscribers
127128
// but as late as possible to get resolved parameters
@@ -141,7 +142,6 @@ public function build(ContainerBuilder $container)
141142
$container->addCompilerPass(new FragmentRendererPass());
142143
$this->addCompilerPassIfExists($container, SerializerPass::class);
143144
$this->addCompilerPassIfExists($container, PropertyInfoPass::class);
144-
$container->addCompilerPass(new DataCollectorTranslatorPass());
145145
$container->addCompilerPass(new ControllerArgumentValueResolverPass());
146146
$container->addCompilerPass(new CachePoolPass(), PassConfig::TYPE_BEFORE_OPTIMIZATION, 32);
147147
$container->addCompilerPass(new CachePoolClearerPass(), PassConfig::TYPE_AFTER_REMOVING);

0 commit comments

Comments
 (0)