From 95f0202fac7a9e2522aa78e29e03242f0a46fea1 Mon Sep 17 00:00:00 2001 From: inmarelibero Date: Sat, 2 Feb 2013 15:13:57 +0100 Subject: [PATCH] [FrameworkBundle] fixed wrong indentation on route debug output --- .../Bundle/FrameworkBundle/Command/RouterDebugCommand.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/Symfony/Bundle/FrameworkBundle/Command/RouterDebugCommand.php b/src/Symfony/Bundle/FrameworkBundle/Command/RouterDebugCommand.php index bf969647b551f..b1252acdba563 100644 --- a/src/Symfony/Bundle/FrameworkBundle/Command/RouterDebugCommand.php +++ b/src/Symfony/Bundle/FrameworkBundle/Command/RouterDebugCommand.php @@ -128,10 +128,10 @@ protected function outputRoute(OutputInterface $output, $name) $output->writeln($this->getHelper('formatter')->formatSection('router', sprintf('Route "%s"', $name))); - $output->writeln(sprintf('Name %s', $name)); - $output->writeln(sprintf('Pattern %s', $route->getPath())); - $output->writeln(sprintf('Host %s', $host)); - $output->writeln(sprintf('Class %s', get_class($route))); + $output->writeln(sprintf('Name %s', $name)); + $output->writeln(sprintf('Pattern %s', $route->getPath())); + $output->writeln(sprintf('Host %s', $host)); + $output->writeln(sprintf('Class %s', get_class($route))); $defaults = ''; $d = $route->getDefaults();