summaryrefslogtreecommitdiffstats
path: root/apps/files/lib
diff options
context:
space:
mode:
authorLukas Reschke <lukas@owncloud.com>2015-01-13 14:47:54 +0100
committerLukas Reschke <lukas@owncloud.com>2015-01-13 14:47:54 +0100
commit4766dac6f4df220b03067a1535bdbfae1ebf23f3 (patch)
tree1d3bdeaa893c57f650ec091852746e4aa9db6bd0 /apps/files/lib
parentba8c050d2b827804d0c860be19591c9d35fd0adf (diff)
downloadnextcloud-server-4766dac6f4df220b03067a1535bdbfae1ebf23f3.tar.gz
nextcloud-server-4766dac6f4df220b03067a1535bdbfae1ebf23f3.zip
Fix PHP doc and enforce type
Diffstat (limited to 'apps/files/lib')
-rw-r--r--apps/files/lib/helper.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/files/lib/helper.php b/apps/files/lib/helper.php
index 4a8af59475b..84b1a0f1662 100644
--- a/apps/files/lib/helper.php
+++ b/apps/files/lib/helper.php
@@ -181,10 +181,10 @@ class Helper
/**
* Populate the result set with file tags
*
- * @param array file list
- * @return file list populated with tags
+ * @param array $fileList
+ * @return array file list populated with tags
*/
- public static function populateTags($fileList) {
+ public static function populateTags(array $fileList) {
$filesById = array();
foreach ($fileList as $fileData) {
$filesById[$fileData['fileid']] = $fileData;