diff options
author | Nils Adermann <naderman@naderman.de> | 2013-07-14 13:30:52 -0400 |
---|---|---|
committer | Nils Adermann <naderman@naderman.de> | 2013-07-14 13:30:52 -0400 |
commit | da2752e4004b296ae5acdd08b7c0a758d8f61e9d (patch) | |
tree | d29e821186f365c55120d8cba89014f30c73da19 /phpBB/phpbb/feed | |
parent | b81613e5e57fd208e832637b6886abf9ec806c4b (diff) | |
download | forums-da2752e4004b296ae5acdd08b7c0a758d8f61e9d.tar forums-da2752e4004b296ae5acdd08b7c0a758d8f61e9d.tar.gz forums-da2752e4004b296ae5acdd08b7c0a758d8f61e9d.tar.bz2 forums-da2752e4004b296ae5acdd08b7c0a758d8f61e9d.tar.xz forums-da2752e4004b296ae5acdd08b7c0a758d8f61e9d.zip |
[ticket/11700] Modify all code to use the new interface names
PHPBB3-11700
Diffstat (limited to 'phpBB/phpbb/feed')
-rw-r--r-- | phpBB/phpbb/feed/base.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/phpBB/phpbb/feed/base.php b/phpBB/phpbb/feed/base.php index 296d830932..9a38e604a3 100644 --- a/phpBB/phpbb/feed/base.php +++ b/phpBB/phpbb/feed/base.php @@ -34,7 +34,7 @@ abstract class phpbb_feed_base /** @var phpbb_db_driver */ protected $db; - /** @var phpbb_cache_driver_interface */ + /** @var phpbb_cache_driver_driver_interface */ protected $cache; /** @var phpbb_user */ @@ -77,14 +77,14 @@ abstract class phpbb_feed_base * @param phpbb_feed_helper $helper Feed helper * @param phpbb_config $config Config object * @param phpbb_db_driver $db Database connection - * @param phpbb_cache_driver_interface $cache Cache object + * @param phpbb_cache_driver_driver_interface $cache Cache object * @param phpbb_user $user User object * @param phpbb_auth $auth Auth object * @param phpbb_content_visibility $content_visibility Auth object * @param string $phpEx php file extension * @return null */ - function __construct(phpbb_feed_helper $helper, phpbb_config $config, phpbb_db_driver $db, phpbb_cache_driver_interface $cache, phpbb_user $user, phpbb_auth $auth, phpbb_content_visibility $content_visibility, $phpEx) + function __construct(phpbb_feed_helper $helper, phpbb_config $config, phpbb_db_driver $db, phpbb_cache_driver_driver_interface $cache, phpbb_user $user, phpbb_auth $auth, phpbb_content_visibility $content_visibility, $phpEx) { $this->config = $config; $this->helper = $helper; |