aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/config/db.php
diff options
context:
space:
mode:
Diffstat (limited to 'phpBB/includes/config/db.php')
-rw-r--r--phpBB/includes/config/db.php4
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;