1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-31 14:00:31 +02:00

[task/config-class] Fix db config constructor param order

PHPBB3-9988
This commit is contained in:
Igor Wiedler
2011-01-11 19:38:10 +01:00
parent fb2642bbc6
commit 106f6800d4
2 changed files with 8 additions and 8 deletions

View File

@@ -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;