aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB
diff options
context:
space:
mode:
authorMarc Alexander <admin@m-a-styles.de>2014-10-24 13:33:26 -0700
committerMarc Alexander <admin@m-a-styles.de>2014-10-24 13:33:26 -0700
commitb27b9a6984f2ed3a9a186133657d30b4cca883c0 (patch)
tree2afc362e5eb9dba71b6db7930bc02767d289c93e /phpBB
parent516bd9ea51a2c2b908eb1f62bddaba967559db4a (diff)
downloadforums-b27b9a6984f2ed3a9a186133657d30b4cca883c0.tar
forums-b27b9a6984f2ed3a9a186133657d30b4cca883c0.tar.gz
forums-b27b9a6984f2ed3a9a186133657d30b4cca883c0.tar.bz2
forums-b27b9a6984f2ed3a9a186133657d30b4cca883c0.tar.xz
forums-b27b9a6984f2ed3a9a186133657d30b4cca883c0.zip
[ticket/13211] Move console migrator output handler to db folder
PHPBB3-13211
Diffstat (limited to 'phpBB')
-rw-r--r--phpBB/phpbb/console/command/db/migrate.php2
-rw-r--r--phpBB/phpbb/db/console_migrator_output_handler.php (renamed from phpBB/phpbb/console/command/db/console_migrator_output_handler.php)3
2 files changed, 2 insertions, 3 deletions
diff --git a/phpBB/phpbb/console/command/db/migrate.php b/phpBB/phpbb/console/command/db/migrate.php
index 9d4b4a0c4d..15349e1230 100644
--- a/phpBB/phpbb/console/command/db/migrate.php
+++ b/phpBB/phpbb/console/command/db/migrate.php
@@ -53,7 +53,7 @@ class migrate extends \phpbb\console\command\command
protected function execute(InputInterface $input, OutputInterface $output)
{
- $this->migrator->set_output_handler(new console_migrator_output_handler($this->user, $output));
+ $this->migrator->set_output_handler(new \phpbb\db\console_migrator_output_handler($this->user, $output));
$this->migrator->create_migrations_table();
diff --git a/phpBB/phpbb/console/command/db/console_migrator_output_handler.php b/phpBB/phpbb/db/console_migrator_output_handler.php
index b9741a3838..6f98995403 100644
--- a/phpBB/phpbb/console/command/db/console_migrator_output_handler.php
+++ b/phpBB/phpbb/db/console_migrator_output_handler.php
@@ -11,10 +11,9 @@
*
*/
-namespace phpbb\console\command\db;
+namespace phpbb\db;
use phpbb\user;
-use phpbb\db\migrator_output_handler_interface;
use Symfony\Component\Console\Output\OutputInterface;
class console_migrator_output_handler implements migrator_output_handler_interface