aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--phpBB/phpbb/files/types/form.php6
-rw-r--r--phpBB/phpbb/files/types/local.php5
-rw-r--r--phpBB/phpbb/files/types/remote.php6
3 files changed, 11 insertions, 6 deletions
diff --git a/phpBB/phpbb/files/types/form.php b/phpBB/phpbb/files/types/form.php
index 98d1c51d5f..be0a425d57 100644
--- a/phpBB/phpbb/files/types/form.php
+++ b/phpBB/phpbb/files/types/form.php
@@ -40,8 +40,10 @@ class form extends base
/**
* Construct a form upload type
*
- * @param factory $factory
- * @param request_interface $request
+ * @param factory $factory Files factory
+ * @param language $language Language class
+ * @param plupload $plupload Plupload
+ * @param request_interface $request Request object
*/
public function __construct(factory $factory, language $language, plupload $plupload, request_interface $request)
{
diff --git a/phpBB/phpbb/files/types/local.php b/phpBB/phpbb/files/types/local.php
index bb5994841f..dfaabded9b 100644
--- a/phpBB/phpbb/files/types/local.php
+++ b/phpBB/phpbb/files/types/local.php
@@ -35,8 +35,9 @@ class local extends base
/**
* Construct a form upload type
*
- * @param factory $factory
- * @param request_interface $request
+ * @param factory $factory Files factory
+ * @param language $language Language class
+ * @param request_interface $request Request object
*/
public function __construct(factory $factory, language $language, request_interface $request)
{
diff --git a/phpBB/phpbb/files/types/remote.php b/phpBB/phpbb/files/types/remote.php
index 65cff8ccc7..94bba8ad46 100644
--- a/phpBB/phpbb/files/types/remote.php
+++ b/phpBB/phpbb/files/types/remote.php
@@ -38,8 +38,10 @@ class remote extends base
/**
* Construct a form upload type
*
- * @param factory $factory
- * @param request_interface $request
+ * @param factory $factory Files factory
+ * @param language $language Language class
+ * @param request_interface $request Request object
+ * @param string $phpbb_root_path phpBB root path
*/
public function __construct(factory $factory, language $language, request_interface $request, $phpbb_root_path)
{