Skip to content

Commit 7638af7

Browse files
committed
Merge branch '3.4' into 4.3
* 3.4: [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 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 3.4.37 updated VERSION for 3.4.36 update CONTRIBUTORS for 3.4.36 updated CHANGELOG for 3.4.36
2 parents 39fa21a + bb09062 commit 7638af7

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;
@@ -229,6 +230,8 @@ protected function getContainerBuilder()
229230
$container->compile();
230231
} else {
231232
(new XmlFileLoader($container = new ContainerBuilder(), new FileLocator()))->load($kernel->getContainer()->getParameter('debug.container.dump'));
233+
$locatorPass = new ServiceLocatorTagPass();
234+
$locatorPass->process($container);
232235
}
233236

234237
return $this->containerBuilder = $container;

0 commit comments

Comments
 (0)