diff options
author | Matt Friedman <maf675@gmail.com> | 2016-12-08 14:25:09 -0800 |
---|---|---|
committer | Matt Friedman <maf675@gmail.com> | 2016-12-08 14:25:09 -0800 |
commit | cbf6d71f6859fd6c036967ed19082f3e54efc328 (patch) | |
tree | 0db265f8f3679b7a2004f4100fc33f5106a733d9 /phpBB/phpbb/console/command/db/migration_command.php | |
parent | b17fa7dfa588fc191f4ed268b88dcaec40294acb (diff) | |
download | forums-cbf6d71f6859fd6c036967ed19082f3e54efc328.tar forums-cbf6d71f6859fd6c036967ed19082f3e54efc328.tar.gz forums-cbf6d71f6859fd6c036967ed19082f3e54efc328.tar.bz2 forums-cbf6d71f6859fd6c036967ed19082f3e54efc328.tar.xz forums-cbf6d71f6859fd6c036967ed19082f3e54efc328.zip |
[ticket/14895] Fix issues in CLI classes
PHPBB3-14895
Diffstat (limited to 'phpBB/phpbb/console/command/db/migration_command.php')
-rw-r--r-- | phpBB/phpbb/console/command/db/migration_command.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/phpbb/console/command/db/migration_command.php b/phpBB/phpbb/console/command/db/migration_command.php index b951560588..851f404fab 100644 --- a/phpBB/phpbb/console/command/db/migration_command.php +++ b/phpBB/phpbb/console/command/db/migration_command.php @@ -26,7 +26,7 @@ abstract class migration_command extends \phpbb\console\command\command /** @var \phpbb\cache\service */ protected $cache; - function __construct(\phpbb\user $user, \phpbb\db\migrator $migrator, \phpbb\extension\manager $extension_manager, \phpbb\config\config $config, \phpbb\cache\service $cache) + public function __construct(\phpbb\user $user, \phpbb\db\migrator $migrator, \phpbb\extension\manager $extension_manager, \phpbb\config\config $config, \phpbb\cache\service $cache) { $this->migrator = $migrator; $this->extension_manager = $extension_manager; |