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

[ticket/11103] dbal -> phpbb_db_driver

PHPBB3-11103
This commit is contained in:
Nathan Guse
2012-12-13 19:46:32 -06:00
parent 1cdb0ecbf2
commit ddd874ba76
4 changed files with 9 additions and 9 deletions

View File

@@ -24,7 +24,7 @@ if (!defined('IN_PHPBB'))
*/
class phpbb_user_loader
{
/** @var dbal */
/** @var phpbb_db_driver */
protected $db = null;
/** @var string */
@@ -46,12 +46,12 @@ class phpbb_user_loader
/**
* User loader constructor
*
* @param dbal $db A database connection
* @param phpbb_db_driver $db A database connection
* @param string $phpbb_root_path Path to the phpbb includes directory.
* @param string $php_ext php file extension
* @param string $users_table The name of the database table (phpbb_users)
*/
public function __construct(dbal $db, $phpbb_root_path, $php_ext, $users_table)
public function __construct(phpbb_db_driver $db, $phpbb_root_path, $php_ext, $users_table)
{
$this->db = $db;