aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes
diff options
context:
space:
mode:
authorNathaniel Guse <nathaniel.guse@gmail.com>2013-05-03 08:50:27 -0500
committerNathaniel Guse <nathaniel.guse@gmail.com>2013-05-03 08:50:27 -0500
commit3c76cdeb6701a4aded7a7c39b8c9b44c00b5848a (patch)
tree7c121019df27126c7a05affa44b513901bef9454 /phpBB/includes
parent77147b53c119706f5fb6ea6036056aed554adf8c (diff)
downloadforums-3c76cdeb6701a4aded7a7c39b8c9b44c00b5848a.tar
forums-3c76cdeb6701a4aded7a7c39b8c9b44c00b5848a.tar.gz
forums-3c76cdeb6701a4aded7a7c39b8c9b44c00b5848a.tar.bz2
forums-3c76cdeb6701a4aded7a7c39b8c9b44c00b5848a.tar.xz
forums-3c76cdeb6701a4aded7a7c39b8c9b44c00b5848a.zip
[ticket/11413] Remove remaining irrelevant code to this PR
PHPBB3-11413
Diffstat (limited to 'phpBB/includes')
-rw-r--r--phpBB/includes/notification/type/base.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/phpBB/includes/notification/type/base.php b/phpBB/includes/notification/type/base.php
index 983383ce2a..46517f1c9b 100644
--- a/phpBB/includes/notification/type/base.php
+++ b/phpBB/includes/notification/type/base.php
@@ -30,7 +30,7 @@ abstract class phpbb_notification_type_base implements phpbb_notification_type_i
/** @var phpbb_db_driver */
protected $db;
- /** @var phpbb_cache_service */
+ /** @var phpbb_cache_driver_interface */
protected $cache;
/** @var phpbb_template */
@@ -96,7 +96,7 @@ abstract class phpbb_notification_type_base implements phpbb_notification_type_i
*
* @param phpbb_user_loader $user_loader
* @param phpbb_db_driver $db
- * @param phpbb_cache_service $cache
+ * @param phpbb_cache_driver_interface $cache
* @param phpbb_user $user
* @param phpbb_auth $auth
* @param phpbb_config $config
@@ -107,7 +107,7 @@ abstract class phpbb_notification_type_base implements phpbb_notification_type_i
* @param string $user_notifications_table
* @return phpbb_notification_type_base
*/
- public function __construct(phpbb_user_loader $user_loader, phpbb_db_driver $db, phpbb_cache_service $cache, $user, phpbb_auth $auth, phpbb_config $config, $phpbb_root_path, $php_ext, $notification_types_table, $notifications_table, $user_notifications_table)
+ 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, $notification_types_table, $notifications_table, $user_notifications_table)
{
$this->user_loader = $user_loader;
$this->db = $db;