Skip to content

Commit c71ab8d

Browse files
committed
Merge branch '4.3' into 4.4
* 4.3: [DotEnv] Remove `usePutEnv` property default value Set up typo fix [Validator] Allow underscore character "_" in URL username and password [SecurityBundle] Passwords are not encoded when algorithm set to \"true\" do not validate passwords when the hash is null [DI] fix resolving bindings for named TypedReference [DI] Fix making the container path-independent when the app is in /app Allow copy instead of symlink for ./link script [FrameworkBundle] resolve service locators in `debug:*` commands bumped Symfony version to 4.3.10 updated VERSION for 4.3.9 updated CHANGELOG for 4.3.9 bumped Symfony version to 3.4.37 updated VERSION for 3.4.36 update CONTRIBUTORS for 3.4.36 updated CHANGELOG for 3.4.36 Add test on ServerLogHandler
2 parents dad1cb8 + 7638af7 commit c71ab8d

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

Command/ContainerDebugCommand.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
use Symfony\Component\Console\Input\InputOption;
2222
use Symfony\Component\Console\Output\OutputInterface;
2323
use Symfony\Component\Console\Style\SymfonyStyle;
24+
use Symfony\Component\DependencyInjection\Compiler\ServiceLocatorTagPass;
2425
use Symfony\Component\DependencyInjection\ContainerBuilder;
2526
use Symfony\Component\DependencyInjection\Exception\ServiceNotFoundException;
2627
use Symfony\Component\DependencyInjection\Loader\XmlFileLoader;
@@ -233,6 +234,8 @@ protected function getContainerBuilder(): ContainerBuilder
233234
$container->compile();
234235
} else {
235236
(new XmlFileLoader($container = new ContainerBuilder(), new FileLocator()))->load($kernel->getContainer()->getParameter('debug.container.dump'));
237+
$locatorPass = new ServiceLocatorTagPass();
238+
$locatorPass->process($container);
236239
}
237240

238241
return $this->containerBuilder = $container;

0 commit comments

Comments
 (0)