diff options
author | Oleg Pudeyev <oleg@bsdpower.com> | 2012-11-30 23:03:06 -0500 |
---|---|---|
committer | Oleg Pudeyev <oleg@bsdpower.com> | 2012-11-30 23:03:06 -0500 |
commit | ec4343c7447911c7e822a03c0f57fc2bb1c4ab3d (patch) | |
tree | ca50b41e53de1e948cb2ee9859a4b69b530305ba /phpBB/includes/config | |
parent | 3a702084e4249830a87dc0914127e00c1bb1b1dd (diff) | |
download | forums-ec4343c7447911c7e822a03c0f57fc2bb1c4ab3d.tar forums-ec4343c7447911c7e822a03c0f57fc2bb1c4ab3d.tar.gz forums-ec4343c7447911c7e822a03c0f57fc2bb1c4ab3d.tar.bz2 forums-ec4343c7447911c7e822a03c0f57fc2bb1c4ab3d.tar.xz forums-ec4343c7447911c7e822a03c0f57fc2bb1c4ab3d.zip |
[ticket/11227] @return void -> @return null, per coding guidelines.
PHPBB3-11227
Diffstat (limited to 'phpBB/includes/config')
-rw-r--r-- | phpBB/includes/config/config.php | 2 | ||||
-rw-r--r-- | phpBB/includes/config/db.php | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/includes/config/config.php b/phpBB/includes/config/config.php index 12a4a418b2..4b533dd55c 100644 --- a/phpBB/includes/config/config.php +++ b/phpBB/includes/config/config.php @@ -109,7 +109,7 @@ class phpbb_config implements ArrayAccess, IteratorAggregate, Countable * @param String $key The configuration option's name * @param bool $use_cache Whether this variable should be cached or if it * changes too frequently to be efficiently cached - * @return void + * @return null */ public function delete($key, $use_cache = true) { diff --git a/phpBB/includes/config/db.php b/phpBB/includes/config/db.php index 993a764a7f..45f9f1cb21 100644 --- a/phpBB/includes/config/db.php +++ b/phpBB/includes/config/db.php @@ -96,7 +96,7 @@ class phpbb_config_db extends phpbb_config * @param String $key The configuration option's name * @param bool $use_cache Whether this variable should be cached or if it * changes too frequently to be efficiently cached - * @return void + * @return null */ public function delete($key, $use_cache = true) { |