Browse Source

[FrameworkBundle] Fixed indentation on router:debug command

Francis Besset 14 years ago
parent
commit
74bae0444f
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/Symfony/Bundle/FrameworkBundle/Command/RouterDebugCommand.php

+ 1 - 1
src/Symfony/Bundle/FrameworkBundle/Command/RouterDebugCommand.php

@@ -85,7 +85,7 @@ EOF
         $format  = '%-'.$maxName.'s %-'.$maxMethod.'s %s';
 
         // displays the generated routes
-        $format1  = '%-'.($maxName + 9).'s %-'.($maxMethod + 9).'s %s';
+        $format1  = '%-'.($maxName + 19).'s %-'.($maxMethod + 19).'s %s';
         $output->writeln(sprintf($format1, '<comment>Name</comment>', '<comment>Method</comment>', '<comment>Pattern</comment>'));
         foreach ($routes as $name => $route) {
             $requirements = $route->getRequirements();