diff options
author | Nathan Guse <nathaniel.guse@gmail.com> | 2012-12-13 19:46:32 -0600 |
---|---|---|
committer | Nathan Guse <nathaniel.guse@gmail.com> | 2012-12-13 19:46:32 -0600 |
commit | ddd874ba76366cebe3cc30df6daa1974e29f34d1 (patch) | |
tree | 01991093e3081bcf6416a58cca224d00b6c7b184 /phpBB/includes/notification/method/base.php | |
parent | 1cdb0ecbf205b10a8297f1ec24fcebaea5bee9b2 (diff) | |
download | forums-ddd874ba76366cebe3cc30df6daa1974e29f34d1.tar forums-ddd874ba76366cebe3cc30df6daa1974e29f34d1.tar.gz forums-ddd874ba76366cebe3cc30df6daa1974e29f34d1.tar.bz2 forums-ddd874ba76366cebe3cc30df6daa1974e29f34d1.tar.xz forums-ddd874ba76366cebe3cc30df6daa1974e29f34d1.zip |
[ticket/11103] dbal -> phpbb_db_driver
PHPBB3-11103
Diffstat (limited to 'phpBB/includes/notification/method/base.php')
-rw-r--r-- | phpBB/includes/notification/method/base.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/includes/notification/method/base.php b/phpBB/includes/notification/method/base.php index 3f85d62a09..f37e7e7845 100644 --- a/phpBB/includes/notification/method/base.php +++ b/phpBB/includes/notification/method/base.php @@ -27,7 +27,7 @@ abstract class phpbb_notification_method_base implements phpbb_notification_meth /** @var phpbb_user_loader */ protected $user_loader = null; - /** @var dbal */ + /** @var phpbb_db_driver */ protected $db = null; /** @var phpbb_cache_service */ @@ -61,7 +61,7 @@ abstract class phpbb_notification_method_base implements phpbb_notification_meth */ protected $queue = array(); - public function __construct(phpbb_user_loader $user_loader, dbal $db, phpbb_cache_driver_interface $cache, $user, phpbb_auth $auth, phpbb_config $config, $phpbb_root_path, $php_ext) + public function __construct(phpbb_user_loader $user_loader, phpbb_db_driver $db, phpbb_cache_driver_interface $cache, $user, phpbb_auth $auth, phpbb_config $config, $phpbb_root_path, $php_ext) { $this->user_loader = $user_loader; $this->db = $db; |