aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--phpBB/includes/log/log.php6
1 files changed, 6 insertions, 0 deletions
diff --git a/phpBB/includes/log/log.php b/phpBB/includes/log/log.php
index 2523b97dbe..67336d232a 100644
--- a/phpBB/includes/log/log.php
+++ b/phpBB/includes/log/log.php
@@ -34,6 +34,8 @@ class phpbb_log implements phpbb_log_interface
/**
* Constructor
+ *
+ * @param string $log_table The table we use to store our logs
*/
public function __construct($log_table)
{
@@ -53,6 +55,8 @@ class phpbb_log implements 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()
{
@@ -61,6 +65,8 @@ class phpbb_log implements phpbb_log_interface
/**
* This function allows re-enable the log-system.
+ *
+ * @return null
*/
public function enable()
{