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 | |
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')
-rw-r--r-- | phpBB/phpbb/db/html_migrator_output_handler.php | 9 | ||||
-rw-r--r-- | phpBB/phpbb/db/migration/null_migrator_output_handler.php | 24 | ||||
-rw-r--r-- | phpBB/phpbb/db/migrator_output_handler_interface.php (renamed from phpBB/phpbb/db/migrator_output_handler.php) | 6 |
3 files changed, 29 insertions, 10 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"; diff --git a/phpBB/phpbb/db/migration/null_migrator_output_handler.php b/phpBB/phpbb/db/migration/null_migrator_output_handler.php new file mode 100644 index 0000000000..bb3aabed45 --- /dev/null +++ b/phpBB/phpbb/db/migration/null_migrator_output_handler.php @@ -0,0 +1,24 @@ +<?php +/** +* +* This file is part of the phpBB Forum Software package. +* +* @copyright (c) phpBB Limited <https://www.phpbb.com> +* @license GNU General Public License, version 2 (GPL-2.0) +* +* For full copyright and license information, please see +* the docs/CREDITS.txt file. +* +*/ + +namespace phpbb\db; + +class null_migrator_output_handler +{ + /** + * {@inheritdoc} + */ + public function write($message, $verbosity) + { + } +} diff --git a/phpBB/phpbb/db/migrator_output_handler.php b/phpBB/phpbb/db/migrator_output_handler_interface.php index 14d5b7890a..a923af99f6 100644 --- a/phpBB/phpbb/db/migrator_output_handler.php +++ b/phpBB/phpbb/db/migrator_output_handler_interface.php @@ -13,7 +13,7 @@ namespace phpbb\db; -class migrator_output_handler +interface migrator_output_handler_interface { const VERBOSITY_QUIET = 0; const VERBOSITY_NORMAL = 1; @@ -27,7 +27,5 @@ class migrator_output_handler * @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. */ - public function write($message, $verbosity) - { - } + public function write($message, $verbosity); } |