diff options
author | Lukas Reschke <lukas@owncloud.com> | 2014-09-29 20:26:41 +0200 |
---|---|---|
committer | Lukas Reschke <lukas@owncloud.com> | 2014-09-29 20:26:41 +0200 |
commit | 8c8e5c168eefbf1460d5456dde6d09562de8902e (patch) | |
tree | 71d80acf82bb9e2c6188ff8f6cc495876bad0ebc /lib/public | |
parent | 9489852e9490c6182e3d900c5fba2ca37d281dd1 (diff) | |
parent | 6e7acb8ae083c158fb412fa3e035e64a83063911 (diff) | |
download | nextcloud-server-8c8e5c168eefbf1460d5456dde6d09562de8902e.tar.gz nextcloud-server-8c8e5c168eefbf1460d5456dde6d09562de8902e.zip |
Merge pull request #10107 from owncloud/sharing_group_shares
[sharing] group shares
Diffstat (limited to 'lib/public')
-rw-r--r-- | lib/public/share.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/public/share.php b/lib/public/share.php index c8b64cc187c..449d1fa211e 100644 --- a/lib/public/share.php +++ b/lib/public/share.php @@ -139,7 +139,7 @@ class Share extends \OC\Share\Constants { * @param int $format (optional) Format type must be defined by the backend * @param mixed $parameters * @param bool $includeCollections - * @return mixed Return depends on format + * @return array */ public static function getItemSharedWithBySource($itemType, $itemSource, $format = self::FORMAT_NONE, $parameters = null, $includeCollections = false) { @@ -361,7 +361,7 @@ interface Share_Backend { * Get a unique name of the item for the specified user * @param string $itemSource * @param string|false $shareWith User the item is being shared with - * @param array|null $exclude List of similar item names already existing as shared items + * @param array|null $exclude List of similar item names already existing as shared items @deprecated since version OC7 * @return string Target name * * This function needs to verify that the user does not already have an item with this name. |