aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB
diff options
context:
space:
mode:
authorNathaniel Guse <nathaniel.guse@gmail.com>2013-05-13 00:56:08 -0500
committerNathaniel Guse <nathaniel.guse@gmail.com>2013-05-13 00:56:08 -0500
commit05cd045923068b08962856ec5e0c36f72f8f831c (patch)
treedf6c1d2981cb220a288bb86d0c723b495dcaefcb /phpBB
parentbae42c6f0a7872d73518b7c3a221b6e23093e0a6 (diff)
downloadforums-05cd045923068b08962856ec5e0c36f72f8f831c.tar
forums-05cd045923068b08962856ec5e0c36f72f8f831c.tar.gz
forums-05cd045923068b08962856ec5e0c36f72f8f831c.tar.bz2
forums-05cd045923068b08962856ec5e0c36f72f8f831c.tar.xz
forums-05cd045923068b08962856ec5e0c36f72f8f831c.zip
[ticket/11413] Revert some cache service related changes from earlier
PHPBB3-11413
Diffstat (limited to 'phpBB')
-rw-r--r--phpBB/includes/notification/method/base.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/phpBB/includes/notification/method/base.php b/phpBB/includes/notification/method/base.php
index bae85310b2..b633956d01 100644
--- a/phpBB/includes/notification/method/base.php
+++ b/phpBB/includes/notification/method/base.php
@@ -30,7 +30,7 @@ abstract class phpbb_notification_method_base implements phpbb_notification_meth
/** @var phpbb_db_driver */
protected $db;
- /** @var phpbb_cache_service */
+ /** @var phpbb_cache_driver_interface */
protected $cache;
/** @var phpbb_template */
@@ -66,7 +66,7 @@ abstract class phpbb_notification_method_base implements phpbb_notification_meth
*
* @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
@@ -74,7 +74,7 @@ abstract class phpbb_notification_method_base implements phpbb_notification_meth
* @param string $php_ext
* @return phpbb_notification_method_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)
+ 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;