diff options
author | Matt Friedman <maf675@gmail.com> | 2016-12-08 14:24:02 -0800 |
---|---|---|
committer | Matt Friedman <maf675@gmail.com> | 2016-12-08 14:24:02 -0800 |
commit | b17fa7dfa588fc191f4ed268b88dcaec40294acb (patch) | |
tree | f24fb0cca88d44e8c3c3afbfbced97e07061b6d3 /phpBB/phpbb/console/command/db/migrate.php | |
parent | d275fefc69bae24f547802d824607c9a054ff6d2 (diff) | |
download | forums-b17fa7dfa588fc191f4ed268b88dcaec40294acb.tar forums-b17fa7dfa588fc191f4ed268b88dcaec40294acb.tar.gz forums-b17fa7dfa588fc191f4ed268b88dcaec40294acb.tar.bz2 forums-b17fa7dfa588fc191f4ed268b88dcaec40294acb.tar.xz forums-b17fa7dfa588fc191f4ed268b88dcaec40294acb.zip |
[ticket/14895] Use SymfonyStyle in all CLI
PHPBB3-14895
Diffstat (limited to 'phpBB/phpbb/console/command/db/migrate.php')
-rw-r--r-- | phpBB/phpbb/console/command/db/migrate.php | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/phpBB/phpbb/console/command/db/migrate.php b/phpBB/phpbb/console/command/db/migrate.php index ae4211f7be..f2cc9142a6 100644 --- a/phpBB/phpbb/console/command/db/migrate.php +++ b/phpBB/phpbb/console/command/db/migrate.php @@ -15,6 +15,7 @@ namespace phpbb\console\command\db; use phpbb\db\output_handler\log_wrapper_migrator_output_handler; use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Output\OutputInterface; +use Symfony\Component\Console\Style\SymfonyStyle; class migrate extends \phpbb\console\command\db\migration_command { @@ -50,6 +51,8 @@ class migrate extends \phpbb\console\command\db\migration_command protected function execute(InputInterface $input, OutputInterface $output) { + $io = new SymfonyStyle($input, $output); + $this->migrator->set_output_handler(new log_wrapper_migrator_output_handler($this->language, new console_migrator_output_handler($this->user, $output), $this->phpbb_root_path . 'store/migrations_' . time() . '.log', $this->filesystem)); $this->migrator->create_migrations_table(); @@ -66,7 +69,7 @@ class migrate extends \phpbb\console\command\db\migration_command } catch (\phpbb\db\migration\exception $e) { - $output->writeln('<error>' . $e->getLocalisedMessage($this->user) . '</error>'); + $io->error($e->getLocalisedMessage($this->user)); $this->finalise_update(); return 1; } @@ -78,6 +81,6 @@ class migrate extends \phpbb\console\command\db\migration_command } $this->finalise_update(); - $output->writeln($this->user->lang['DATABASE_UPDATE_COMPLETE']); + $io->success($this->language->lang('INLINE_UPDATE_SUCCESSFUL')); } } |