diff options
author | Igor Wiedler <igor@wiedler.ch> | 2011-01-11 19:38:10 +0100 |
---|---|---|
committer | Igor Wiedler <igor@wiedler.ch> | 2011-01-11 19:38:10 +0100 |
commit | 106f6800d4d898f079129e85fd6763c199dae9ec (patch) | |
tree | 324a6dbc0f2d3143926456942745e11d840edf1d /phpBB/includes/config | |
parent | fb2642bbc6360dacfd4a3cc9f7e9447b02cb46a1 (diff) | |
download | forums-106f6800d4d898f079129e85fd6763c199dae9ec.tar forums-106f6800d4d898f079129e85fd6763c199dae9ec.tar.gz forums-106f6800d4d898f079129e85fd6763c199dae9ec.tar.bz2 forums-106f6800d4d898f079129e85fd6763c199dae9ec.tar.xz forums-106f6800d4d898f079129e85fd6763c199dae9ec.zip |
[task/config-class] Fix db config constructor param order
PHPBB3-9988
Diffstat (limited to 'phpBB/includes/config')
-rw-r--r-- | phpBB/includes/config/db.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/includes/config/db.php b/phpBB/includes/config/db.php index e6b7bffb73..1e07e1f67f 100644 --- a/phpBB/includes/config/db.php +++ b/phpBB/includes/config/db.php @@ -36,11 +36,11 @@ class phpbb_config_db extends phpbb_config /** * Creates a configuration container with a default set of values * - * @param phpbb_cache_driver_interface $cache Cache instance * @param dbal $db Database connection + * @param phpbb_cache_driver_interface $cache Cache instance * @param string $table Configuration table name */ - public function __construct(phpbb_cache_driver_interface $cache, dbal $db, $table) + public function __construct(dbal $db, phpbb_cache_driver_interface $cache, $table) { $this->db = $db; $this->cache = $cache; |