diff options
author | Joas Schilling <coding@schilljs.com> | 2016-05-24 15:26:02 +0200 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2016-07-18 10:26:42 +0200 |
commit | c2b077e185495cf3ac42861fece2ed332ddbeb2e (patch) | |
tree | e7e196e86514574970f3c1cfd2a0fa2642d9122f /apps | |
parent | 8e13ff2c8621efc2640ff1fcd2c2b58391b09f6c (diff) | |
download | nextcloud-server-c2b077e185495cf3ac42861fece2ed332ddbeb2e.tar.gz nextcloud-server-c2b077e185495cf3ac42861fece2ed332ddbeb2e.zip |
Fix doc blocks
Diffstat (limited to 'apps')
-rw-r--r-- | apps/dav/lib/SystemTag/SystemTagsObjectTypeCollection.php | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/apps/dav/lib/SystemTag/SystemTagsObjectTypeCollection.php b/apps/dav/lib/SystemTag/SystemTagsObjectTypeCollection.php index ba5b3e1185b..f9ec3183f82 100644 --- a/apps/dav/lib/SystemTag/SystemTagsObjectTypeCollection.php +++ b/apps/dav/lib/SystemTag/SystemTagsObjectTypeCollection.php @@ -96,6 +96,7 @@ class SystemTagsObjectTypeCollection implements ICollection { /** * @param string $name * @param resource|string $data Initial payload + * @return null|string * @throws Forbidden */ function createFile($name, $data = null) { @@ -104,6 +105,7 @@ class SystemTagsObjectTypeCollection implements ICollection { /** * @param string $name + * @throws Forbidden */ function createDirectory($name) { throw new Forbidden('Permission denied to create collections'); @@ -111,6 +113,8 @@ class SystemTagsObjectTypeCollection implements ICollection { /** * @param string $objectId + * @return SystemTagsObjectMappingCollection + * @throws NotFound */ function getChild($objectId) { // make sure the object exists and is reachable @@ -151,6 +155,7 @@ class SystemTagsObjectTypeCollection implements ICollection { /** * @param string $name + * @throws Forbidden */ function setName($name) { throw new Forbidden('Permission denied to rename this collection'); |