1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-03 15:27:42 +02:00

[ticket/15179] Fix indentation

PHPBB3-15179
This commit is contained in:
rxu
2017-06-12 02:04:30 +07:00
parent a44f31ec42
commit 467ff41e84

View File

@@ -63,7 +63,7 @@ class list_available extends \phpbb\console\command\command
foreach ($this->manager->get_available_packages() as $package) foreach ($this->manager->get_available_packages() as $package)
{ {
$extensions[] = '<info>' . $package['name'] . '</info> (<comment>' . $package['version'] . '</comment>) ' . $package['url'] . $extensions[] = '<info>' . $package['name'] . '</info> (<comment>' . $package['version'] . '</comment>) ' . $package['url'] .
($package['description'] ? "\n" . $package['description'] : ''); ($package['description'] ? "\n" . $package['description'] : '');
} }
$io->listing($extensions); $io->listing($extensions);