diff options
author | rechosen <rechosen@gmail.com> | 2013-08-13 16:56:04 +0200 |
---|---|---|
committer | rechosen <rechosen@gmail.com> | 2013-08-13 16:56:04 +0200 |
commit | ef4eda3855ea7df9611de0abcb5308e0129e406f (patch) | |
tree | 72eb45456c97e0f9730dc3c93531662fc25e6125 /phpBB/phpbb/content_visibility.php | |
parent | e2014ab76ee2947691c9136afacc311b01b74e9a (diff) | |
download | forums-ef4eda3855ea7df9611de0abcb5308e0129e406f.tar forums-ef4eda3855ea7df9611de0abcb5308e0129e406f.tar.gz forums-ef4eda3855ea7df9611de0abcb5308e0129e406f.tar.bz2 forums-ef4eda3855ea7df9611de0abcb5308e0129e406f.tar.xz forums-ef4eda3855ea7df9611de0abcb5308e0129e406f.zip |
[ticket/11786] s/@return void/@return null in content_visibility.php
The file phpbb/content_visibility.php still contained a few instances of
'@return void' in its PHPDoc blocks, fixed. Thanks to JoshyPHP for reporting.
PHPBB3-11786
Diffstat (limited to 'phpBB/phpbb/content_visibility.php')
-rw-r--r-- | phpBB/phpbb/content_visibility.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/phpBB/phpbb/content_visibility.php b/phpBB/phpbb/content_visibility.php index fb8ece0e8c..3c94b629e9 100644 --- a/phpBB/phpbb/content_visibility.php +++ b/phpBB/phpbb/content_visibility.php @@ -554,7 +554,7 @@ class phpbb_content_visibility * * @param $data array Contains information from the topics table about given topic * @param $sql_data array Populated with the SQL changes, may be empty at call time - * @return void + * @return null */ public function add_post_to_statistic($data, &$sql_data) { @@ -575,7 +575,7 @@ class phpbb_content_visibility * * @param $data array Contains information from the topics table about given topic * @param $sql_data array Populated with the SQL changes, may be empty at call time - * @return void + * @return null */ public function remove_post_from_statistic($data, &$sql_data) { @@ -597,7 +597,7 @@ class phpbb_content_visibility * @param $forum_id int Forum where the topic is found * @param $topic_row array Contains information from the topic, may be empty at call time * @param $sql_data array Populated with the SQL changes, may be empty at call time - * @return void + * @return null */ public function remove_topic_from_statistic($topic_id, $forum_id, &$topic_row, &$sql_data) { |