summaryrefslogtreecommitdiffstats
path: root/apps/files
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2015-11-30 23:00:51 +0100
committerThomas Müller <thomas.mueller@tmit.eu>2015-11-30 23:00:51 +0100
commitd6da0396d02693e35073cfd4ec990a85393a92e5 (patch)
treeb090c93a5303cf1f72ff68e85e3145fd813aca82 /apps/files
parentdcbd60351435c9a5ea8d23dff703d449489aa335 (diff)
downloadnextcloud-server-d6da0396d02693e35073cfd4ec990a85393a92e5.tar.gz
nextcloud-server-d6da0396d02693e35073cfd4ec990a85393a92e5.zip
Adjust patches
Diffstat (limited to 'apps/files')
-rw-r--r--apps/files/controller/apicontroller.php2
-rw-r--r--apps/files/service/tagservice.php2
2 files changed, 2 insertions, 2 deletions
diff --git a/apps/files/controller/apicontroller.php b/apps/files/controller/apicontroller.php
index ed14b887479..ee54db63191 100644
--- a/apps/files/controller/apicontroller.php
+++ b/apps/files/controller/apicontroller.php
@@ -127,7 +127,7 @@ class ApiController extends Controller {
*
* @NoAdminRequired
*
- * @param string[] $tagName tag name to filter by
+ * @param string $tagName tag name to filter by
* @return DataResponse
*/
public function getFilesByTag($tagName) {
diff --git a/apps/files/service/tagservice.php b/apps/files/service/tagservice.php
index 1999d97e1af..cf3f2bb7865 100644
--- a/apps/files/service/tagservice.php
+++ b/apps/files/service/tagservice.php
@@ -91,7 +91,7 @@ class TagService {
/**
* Get all files for the given tag
*
- * @param array $tagName tag name to filter by
+ * @param string $tagName tag name to filter by
* @return FileInfo[] list of matching files
* @throws \Exception if the tag does not exist
*/