aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@gmx.de>2012-03-18 13:42:08 +0100
committerJoas Schilling <nickvergessen@gmx.de>2012-08-21 11:59:30 +0200
commit1539ad7ebe1493e4c486181f65976c93dbb95c29 (patch)
tree8be3cf8329b5b49bbd2cdf6486989153524e8cac /phpBB
parent31e18f31a6139cddb32520aa6ed020dc8f80f70a (diff)
downloadforums-1539ad7ebe1493e4c486181f65976c93dbb95c29.tar
forums-1539ad7ebe1493e4c486181f65976c93dbb95c29.tar.gz
forums-1539ad7ebe1493e4c486181f65976c93dbb95c29.tar.bz2
forums-1539ad7ebe1493e4c486181f65976c93dbb95c29.tar.xz
forums-1539ad7ebe1493e4c486181f65976c93dbb95c29.zip
[ticket/10714] Add @return null to doc blocks
PHPBB3-10714
Diffstat (limited to 'phpBB')
-rw-r--r--phpBB/includes/log/interface.php4
1 files changed, 4 insertions, 0 deletions
diff --git a/phpBB/includes/log/interface.php b/phpBB/includes/log/interface.php
index 897b8a8211..7eda4b9710 100644
--- a/phpBB/includes/log/interface.php
+++ b/phpBB/includes/log/interface.php
@@ -31,11 +31,15 @@ interface phpbb_log_interface
/**
* This function allows disable the log-system. When add_log is called, the log will not be added to the database.
+ *
+ * @return null
*/
public function disable();
/**
* This function allows re-enable the log-system.
+ *
+ * @return null
*/
public function enable();