diff options
author | Mate Bartus <mate.bartus@gmail.com> | 2015-06-27 17:10:42 +0200 |
---|---|---|
committer | Mate Bartus <mate.bartus@gmail.com> | 2015-07-08 01:28:09 +0200 |
commit | 249345d9cc6d6bff380436d6e05f24918d762c0d (patch) | |
tree | 3e2f0ad1e54205196c52dbc603710f36c1d5deec /phpBB | |
parent | 06f4ebce1b1cc8ecd5ddd84f7d2705007a685de3 (diff) | |
download | forums-249345d9cc6d6bff380436d6e05f24918d762c0d.tar forums-249345d9cc6d6bff380436d6e05f24918d762c0d.tar.gz forums-249345d9cc6d6bff380436d6e05f24918d762c0d.tar.bz2 forums-249345d9cc6d6bff380436d6e05f24918d762c0d.tar.xz forums-249345d9cc6d6bff380436d6e05f24918d762c0d.zip |
[ticket/13740] Clean up CLI merge
[ci skip]
PHPBB3-13740
Diffstat (limited to 'phpBB')
-rw-r--r-- | phpBB/phpbb/install/helper/iohandler/cli_iohandler.php | 21 | ||||
-rw-r--r-- | phpBB/phpbb/install/helper/iohandler/factory.php | 2 |
2 files changed, 22 insertions, 1 deletions
diff --git a/phpBB/phpbb/install/helper/iohandler/cli_iohandler.php b/phpBB/phpbb/install/helper/iohandler/cli_iohandler.php index d990f48925..f711abe431 100644 --- a/phpBB/phpbb/install/helper/iohandler/cli_iohandler.php +++ b/phpBB/phpbb/install/helper/iohandler/cli_iohandler.php @@ -232,4 +232,25 @@ class cli_iohandler extends iohandler_base $this->progress_bar = null; } } + + /** + * {@inheritdoc} + */ + public function request_refresh() + { + } + + /** + * {@inheritdoc} + */ + public function set_active_stage_menu($menu_path) + { + } + + /** + * {@inheritdoc} + */ + public function set_finished_stage_menu($menu_path) + { + } } diff --git a/phpBB/phpbb/install/helper/iohandler/factory.php b/phpBB/phpbb/install/helper/iohandler/factory.php index 7081af06a5..52d24e49b2 100644 --- a/phpBB/phpbb/install/helper/iohandler/factory.php +++ b/phpBB/phpbb/install/helper/iohandler/factory.php @@ -59,7 +59,7 @@ class factory */ public function get() { - if ($this->container->has('installer.helper.iohandler_' . $this->environment)) + switch ($this->environment) { case 'ajax': return $this->container->get('installer.helper.iohandler_ajax'); |