From fdece6cdf3cb375da1ee4ab488d2ec8d854845db Mon Sep 17 00:00:00 2001 From: Tristan Darricau Date: Wed, 22 Oct 2014 15:25:50 +0200 Subject: [PATCH] [ticket/13126] Add missing use statement PHPBB3-13126 --- .../phpbb/console/command/db/console_migrator_output_handler.php | 1 + 1 file changed, 1 insertion(+) diff --git a/phpBB/phpbb/console/command/db/console_migrator_output_handler.php b/phpBB/phpbb/console/command/db/console_migrator_output_handler.php index 92a047605d..b9741a3838 100644 --- a/phpBB/phpbb/console/command/db/console_migrator_output_handler.php +++ b/phpBB/phpbb/console/command/db/console_migrator_output_handler.php @@ -14,6 +14,7 @@ namespace phpbb\console\command\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