aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/feed
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@gmx.de>2013-07-11 22:41:24 -0400
committerJoas Schilling <nickvergessen@gmx.de>2013-07-11 22:41:24 -0400
commit003a104f931201704998f5c00c5cf982896b470b (patch)
treeb58b6ae0dce590b7c0201d8fc8c11d7f7785c44c /phpBB/includes/feed
parent5ab0090e6c9fa1b497938a932cdf28ba55a17e7c (diff)
downloadforums-003a104f931201704998f5c00c5cf982896b470b.tar
forums-003a104f931201704998f5c00c5cf982896b470b.tar.gz
forums-003a104f931201704998f5c00c5cf982896b470b.tar.bz2
forums-003a104f931201704998f5c00c5cf982896b470b.tar.xz
forums-003a104f931201704998f5c00c5cf982896b470b.zip
[ticket/9657] Add type hints for classes
PHPBB3-9657
Diffstat (limited to 'phpBB/includes/feed')
-rw-r--r--phpBB/includes/feed/base.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/feed/base.php b/phpBB/includes/feed/base.php
index 84fdbe415a..296d830932 100644
--- a/phpBB/includes/feed/base.php
+++ b/phpBB/includes/feed/base.php
@@ -84,7 +84,7 @@ abstract class phpbb_feed_base
* @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, $content_visibility, $phpEx)
+ 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)
{
$this->config = $config;
$this->helper = $helper;