Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit ac2a2ce

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

File tree

1 file changed

+7
-2
lines changed
Filter options

1 file changed

+7
-2
lines changed

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

Copy file name to clipboardExpand all lines: src/Symfony/Bridge/Twig/Command/DebugCommand.php
+7-2Lines 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 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.