Fix doc blocks

This commit is contained in:
Joas Schilling 2016-05-24 15:26:02 +02:00
parent 8e13ff2c86
commit c2b077e185
No known key found for this signature in database
GPG Key ID: E166FD8976B3BAC8
1 changed files with 5 additions and 0 deletions

View File

@ -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');