diff options
author | Tristan Darricau <github@nicofuma.fr> | 2014-10-20 19:38:04 +0200 |
---|---|---|
committer | Tristan Darricau <github@nicofuma.fr> | 2014-10-20 19:41:32 +0200 |
commit | 8f6fcd2744a80795139600c2a7c1f46f59b8cbfe (patch) | |
tree | f9d409e033b2ee417fae544d03d4990133a650ff /phpBB/phpbb/db/html_migrator_output_handler.php | |
parent | 58075e25e8173ec663e4e8908d1963b1947a225b (diff) | |
download | forums-8f6fcd2744a80795139600c2a7c1f46f59b8cbfe.tar forums-8f6fcd2744a80795139600c2a7c1f46f59b8cbfe.tar.gz forums-8f6fcd2744a80795139600c2a7c1f46f59b8cbfe.tar.bz2 forums-8f6fcd2744a80795139600c2a7c1f46f59b8cbfe.tar.xz forums-8f6fcd2744a80795139600c2a7c1f46f59b8cbfe.zip |
[ticket/13126] Move migrator_output_handler to an interface
PHPBB3-13126
Diffstat (limited to 'phpBB/phpbb/db/html_migrator_output_handler.php')
-rw-r--r-- | phpBB/phpbb/db/html_migrator_output_handler.php | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/phpBB/phpbb/db/html_migrator_output_handler.php b/phpBB/phpbb/db/html_migrator_output_handler.php index 6812498f1f..82b7b416e2 100644 --- a/phpBB/phpbb/db/html_migrator_output_handler.php +++ b/phpBB/phpbb/db/html_migrator_output_handler.php @@ -15,7 +15,7 @@ namespace phpbb\db; use phpbb\user; -class html_migrator_output_handler extends migrator_output_handler +class html_migrator_output_handler implements migrator_output_handler_interface { /** * User object. @@ -35,14 +35,11 @@ class html_migrator_output_handler extends migrator_output_handler } /** - * Write output using the configured closure. - * - * @param string|array $message The message to write or an array containing the language key and all of its parameters. - * @param int $verbosity The verbosity of the message. + * {@inheritdoc} */ public function write($message, $verbosity) { - if ($verbosity <= migrator_output_handler::VERBOSITY_NORMAL) + if ($verbosity <= migrator_output_handler_interface::VERBOSITY_NORMAL) { $final_message = call_user_func_array(array($this->user, 'lang'), $message); echo $final_message . "<br />\n"; |