[FrameworkBundle] fix describing routes with no controllers

This commit is contained in:
Nicolas Grekas 2018-12-12 18:02:13 +01:00
parent 68b823f243
commit a1c612aedf

View File

@ -56,7 +56,7 @@ class TextDescriptor extends Descriptor
if ($showControllers) {
$controller = $route->getDefault('_controller');
$row[] = $this->formatCallable($controller);
$row[] = $controller ? $this->formatCallable($controller) : '';
}
$tableRows[] = $row;