mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 14:18:52 +00:00
[ticket/16620] Output short array syntax in dev:migration-tips
PHPBB3-16620
This commit is contained in:
parent
bb8768b604
commit
3ab6059b56
1 changed files with 2 additions and 2 deletions
|
@ -54,11 +54,11 @@ class migration_tips extends \phpbb\console\command\command
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
$output->writeln("\t\tarray(");
|
$output->writeln("\t\t[");
|
||||||
foreach ($tips as $migration)
|
foreach ($tips as $migration)
|
||||||
{
|
{
|
||||||
$output->writeln("\t\t\t'{$migration}',");
|
$output->writeln("\t\t\t'{$migration}',");
|
||||||
}
|
}
|
||||||
$output->writeln("\t\t);");
|
$output->writeln("\t\t];");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue