Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit ac2a2ce

Browse files
committed
Seven wins the fight ... for now ... :)
1 parent 7cd2b29 commit ac2a2ce

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

src/Symfony/Bridge/Twig/Command/DebugCommand.php

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -153,11 +153,16 @@ protected function execute(InputInterface $input, OutputInterface $output)
153153

154154
$rows = array();
155155
foreach ($this->getLoaderPaths() as $namespace => $paths) {
156+
if (count($paths) > 1) {
157+
$rows[] = array('', '');
158+
}
156159
foreach ($paths as $path) {
157-
$rows[] = array($namespace, '* '.$path);
160+
$rows[] = array($namespace, '- '.$path);
158161
$namespace = '';
159162
}
160-
$rows[] = new TableSeparator();
163+
if (count($paths) > 1) {
164+
$rows[] = array('', '');
165+
}
161166
}
162167
array_pop($rows);
163168
$io->section('Loader Paths');

0 commit comments

Comments
 (0)