From 106f6800d4d898f079129e85fd6763c199dae9ec Mon Sep 17 00:00:00 2001 From: Igor Wiedler Date: Tue, 11 Jan 2011 19:38:10 +0100 Subject: [task/config-class] Fix db config constructor param order PHPBB3-9988 --- phpBB/includes/config/db.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'phpBB/includes/config') 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; -- cgit v1.2.1