From 408df7c1ce0a22caac81fce76c7983e15e889b5e Mon Sep 17 00:00:00 2001 From: Abdellatif AitBoudad Date: Mon, 1 Dec 2014 14:24:26 +0000 Subject: [PATCH] [FrameworkBundle][Router Cmd] use debug namespace. --- .../Bundle/FrameworkBundle/Command/RouterMatchCommand.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Symfony/Bundle/FrameworkBundle/Command/RouterMatchCommand.php b/src/Symfony/Bundle/FrameworkBundle/Command/RouterMatchCommand.php index 72b322bca3..38536e0f69 100644 --- a/src/Symfony/Bundle/FrameworkBundle/Command/RouterMatchCommand.php +++ b/src/Symfony/Bundle/FrameworkBundle/Command/RouterMatchCommand.php @@ -96,7 +96,7 @@ EOF } elseif (TraceableUrlMatcher::ROUTE_MATCHES == $trace['level']) { $output->writeln(sprintf('Route "%s" matches', $trace['name'])); - $routerDebugcommand = $this->getApplication()->find('router:debug'); + $routerDebugcommand = $this->getApplication()->find('debug:router'); $output->writeln(''); $routerDebugcommand->run(new ArrayInput(array('name' => $trace['name'])), $output);