aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@gmx.de>2012-03-18 21:56:15 +0100
committerJoas Schilling <nickvergessen@gmx.de>2012-08-21 11:59:32 +0200
commita0b35f8e4e94d1301421670cf35406b974510ed0 (patch)
tree6f418ebbfa3649033f3143d24af605f54b46806b /phpBB/includes
parent61cbabb120dfca6d924fbb08645f6dfbbcc5c1ec (diff)
downloadforums-a0b35f8e4e94d1301421670cf35406b974510ed0.tar
forums-a0b35f8e4e94d1301421670cf35406b974510ed0.tar.gz
forums-a0b35f8e4e94d1301421670cf35406b974510ed0.tar.bz2
forums-a0b35f8e4e94d1301421670cf35406b974510ed0.tar.xz
forums-a0b35f8e4e94d1301421670cf35406b974510ed0.zip
[ticket/10714] Use {@inheritDoc} instead of repeating the doc-block
PHPBB3-10714
Diffstat (limited to 'phpBB/includes')
-rw-r--r--phpBB/includes/log/log.php9
1 files changed, 1 insertions, 8 deletions
diff --git a/phpBB/includes/log/log.php b/phpBB/includes/log/log.php
index db774e48d5..aa60c453e4 100644
--- a/phpBB/includes/log/log.php
+++ b/phpBB/includes/log/log.php
@@ -76,14 +76,7 @@ class phpbb_log implements phpbb_log_interface
/**
* Adds a log to the database
*
- * @param string $mode The mode defines which log_type is used and in which log the entry is displayed.
- * @param int $user_id User ID of the user
- * @param string $log_ip IP address of the user
- * @param string $log_operation Name of the operation
- * @param int $log_time Timestamp when the log was added.
- * @param array $additional_data More arguments can be added, depending on the log_type
- *
- * @return int|bool Returns the log_id, if the entry was added to the database, false otherwise.
+ * {@inheritDoc}
*/
public function add($mode, $user_id, $log_ip, $log_operation, $log_time = false, $additional_data = array())
{