diff options
| author | Joas Schilling <nickvergessen@gmx.de> | 2014-12-06 16:34:02 +0100 |
|---|---|---|
| committer | Joas Schilling <nickvergessen@gmx.de> | 2014-12-06 17:10:07 +0100 |
| commit | ec90f2b380a598a3dbf7ada0e95878d9d1b85cbe (patch) | |
| tree | f2cbf3419cbf1c0fea7391f03dfb418cc5c9dc72 /phpBB/phpbb/db/migration/migration.php | |
| parent | d78bb2865b27aa753b165fdc8aaa73ed82eaeac8 (diff) | |
| download | forums-ec90f2b380a598a3dbf7ada0e95878d9d1b85cbe.tar forums-ec90f2b380a598a3dbf7ada0e95878d9d1b85cbe.tar.gz forums-ec90f2b380a598a3dbf7ada0e95878d9d1b85cbe.tar.bz2 forums-ec90f2b380a598a3dbf7ada0e95878d9d1b85cbe.tar.xz forums-ec90f2b380a598a3dbf7ada0e95878d9d1b85cbe.zip | |
[ticket/13421] Move tools to subdirectory
PHPBB3-13421
Diffstat (limited to 'phpBB/phpbb/db/migration/migration.php')
| -rw-r--r-- | phpBB/phpbb/db/migration/migration.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/phpBB/phpbb/db/migration/migration.php b/phpBB/phpbb/db/migration/migration.php index 6cf7685350..2304c8e44c 100644 --- a/phpBB/phpbb/db/migration/migration.php +++ b/phpBB/phpbb/db/migration/migration.php @@ -28,7 +28,7 @@ abstract class migration /** @var \phpbb\db\driver\driver_interface */ protected $db; - /** @var \phpbb\db\tools_interface */ + /** @var \phpbb\db\tools\tools_interface */ protected $db_tools; /** @var string */ @@ -51,12 +51,12 @@ abstract class migration * * @param \phpbb\config\config $config * @param \phpbb\db\driver\driver_interface $db - * @param \phpbb\db\tools_interface $db_tools + * @param \phpbb\db\tools\tools_interface $db_tools * @param string $phpbb_root_path * @param string $php_ext * @param string $table_prefix */ - public function __construct(\phpbb\config\config $config, \phpbb\db\driver\driver_interface $db, \phpbb\db\tools_interface $db_tools, $phpbb_root_path, $php_ext, $table_prefix) + public function __construct(\phpbb\config\config $config, \phpbb\db\driver\driver_interface $db, \phpbb\db\tools\tools_interface $db_tools, $phpbb_root_path, $php_ext, $table_prefix) { $this->config = $config; $this->db = $db; |
