aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/avatar/driver/driver.php
diff options
context:
space:
mode:
authorTristan Darricau <github@nicofuma.fr>2014-06-14 21:33:26 +0200
committerTristan Darricau <github@nicofuma.fr>2014-06-15 16:39:30 +0200
commit569ebd1592d4cc6938dd7a6672265405467064db (patch)
treeb6301187e7ce127a585e953871d8fbb6c7fba026 /phpBB/phpbb/avatar/driver/driver.php
parentd7b9e33b94ecaa7f1a00630de9149b75a5985268 (diff)
downloadforums-569ebd1592d4cc6938dd7a6672265405467064db.tar
forums-569ebd1592d4cc6938dd7a6672265405467064db.tar.gz
forums-569ebd1592d4cc6938dd7a6672265405467064db.tar.bz2
forums-569ebd1592d4cc6938dd7a6672265405467064db.tar.xz
forums-569ebd1592d4cc6938dd7a6672265405467064db.zip
[ticket/12715] Cleanup comments in \phpbb\avatar\driver\*
PHPBB3-12715
Diffstat (limited to 'phpBB/phpbb/avatar/driver/driver.php')
-rw-r--r--phpBB/phpbb/avatar/driver/driver.php11
1 files changed, 5 insertions, 6 deletions
diff --git a/phpBB/phpbb/avatar/driver/driver.php b/phpBB/phpbb/avatar/driver/driver.php
index 9c769071d4..b3ced7edf7 100644
--- a/phpBB/phpbb/avatar/driver/driver.php
+++ b/phpBB/phpbb/avatar/driver/driver.php
@@ -73,10 +73,9 @@ abstract class driver implements \phpbb\avatar\driver\driver_interface
* Construct a driver object
*
* @param \phpbb\config\config $config phpBB configuration
- * @param \phpbb\request\request $request Request object
* @param string $phpbb_root_path Path to the phpBB root
* @param string $php_ext PHP file extension
- * @param \phpbb_path_helper $path_helper phpBB path helper
+ * @param \phpbb\path_helper $path_helper phpBB path helper
* @param \phpbb\cache\driver\driver_interface $cache Cache driver
*/
public function __construct(\phpbb\config\config $config, $phpbb_root_path, $php_ext, \phpbb\path_helper $path_helper, \phpbb\cache\driver\driver_interface $cache = null)
@@ -89,7 +88,7 @@ abstract class driver implements \phpbb\avatar\driver\driver_interface
}
/**
- * @inheritdoc
+ * {@inheritdoc}
*/
public function get_custom_html($user, $row, $alt = '')
{
@@ -97,7 +96,7 @@ abstract class driver implements \phpbb\avatar\driver\driver_interface
}
/**
- * @inheritdoc
+ * {@inheritdoc}
*/
public function prepare_form_acp($user)
{
@@ -105,7 +104,7 @@ abstract class driver implements \phpbb\avatar\driver\driver_interface
}
/**
- * @inheritdoc
+ * {@inheritdoc}
*/
public function delete($row)
{
@@ -113,7 +112,7 @@ abstract class driver implements \phpbb\avatar\driver\driver_interface
}
/**
- * @inheritdoc
+ * {@inheritdoc}
*/
public function get_name()
{