Skip to content
Snippets Groups Projects
Commit 55672280 authored by Morris Jobke's avatar Morris Jobke
Browse files

Merge pull request #13318 from owncloud/fix-annotation

Fix PHP doc and enforce type
parents 975f19f6 4766dac6
No related branches found
No related tags found
No related merge requests found
...@@ -181,10 +181,10 @@ class Helper ...@@ -181,10 +181,10 @@ class Helper
/** /**
* Populate the result set with file tags * Populate the result set with file tags
* *
* @param array file list * @param array $fileList
* @return file list populated with tags * @return array file list populated with tags
*/ */
public static function populateTags($fileList) { public static function populateTags(array $fileList) {
$filesById = array(); $filesById = array();
foreach ($fileList as $fileData) { foreach ($fileList as $fileData) {
$filesById[$fileData['fileid']] = $fileData; $filesById[$fileData['fileid']] = $fileData;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment