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
Branches
No related tags found
No related merge requests found
......@@ -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;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment