diff options
| author | Joas Schilling <nickvergessen@gmx.de> | 2012-03-18 13:54:33 +0100 |
|---|---|---|
| committer | Joas Schilling <nickvergessen@gmx.de> | 2012-08-21 11:59:31 +0200 |
| commit | b9b08cf765d7feb2865477bb82ab58e8cfb0c156 (patch) | |
| tree | 2f7e4dede67db688ca407521bc640af9b351a91c /phpBB/includes | |
| parent | cff15ec307d76b004b6a825fb51b5dd3c8da58f2 (diff) | |
| download | forums-b9b08cf765d7feb2865477bb82ab58e8cfb0c156.tar forums-b9b08cf765d7feb2865477bb82ab58e8cfb0c156.tar.gz forums-b9b08cf765d7feb2865477bb82ab58e8cfb0c156.tar.bz2 forums-b9b08cf765d7feb2865477bb82ab58e8cfb0c156.tar.xz forums-b9b08cf765d7feb2865477bb82ab58e8cfb0c156.zip | |
[ticket/10714] Add return null to phpbb_log and add param to constructor
PHPBB3-10714
Diffstat (limited to 'phpBB/includes')
| -rw-r--r-- | phpBB/includes/log/log.php | 6 |
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() { |
