diff options
| author | Joas Schilling <nickvergessen@gmx.de> | 2012-03-18 13:42:08 +0100 |
|---|---|---|
| committer | Joas Schilling <nickvergessen@gmx.de> | 2012-08-21 11:59:30 +0200 |
| commit | 1539ad7ebe1493e4c486181f65976c93dbb95c29 (patch) | |
| tree | 8be3cf8329b5b49bbd2cdf6486989153524e8cac | |
| parent | 31e18f31a6139cddb32520aa6ed020dc8f80f70a (diff) | |
| download | forums-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
| -rw-r--r-- | phpBB/includes/log/interface.php | 4 |
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(); |
